view com.ibm.icu/src/com/ibm/icu/text/MessageFormat.d @ 115:b31c27b8e86d

Added Phobos implementation of java.lang.String.firstCodePoint.
author Jacob Carlborg <doob@me.com>
date Sun, 17 Apr 2011 16:53:26 +0200
parents 48d4ee626868
children 536e43f63c81
line wrap: on
line source


module com.ibm.icu.text.MessageFormat;

import java.lang.all;

import com.ibm.icu.mangoicu.UMessageFormat;

public class MessageFormat {

    private UMessageFormat frm;

    public this(String pattern ) {
        frm = new UMessageFormat( pattern.toWCharArray() );
    }

    public static String format(String format, Object[] args) {
        implMissing(__FILE__, __LINE__);
        return null;
    }

    public String format(Object[] objects) {
        implMissing(__FILE__, __LINE__);
        return null;
    }

}