view dwt/dwthelper/ResourceBundle.d @ 106:396a9fa07672

Added addressbook example. Does not yet compile
author Frank Benoit <benoit@tionex.de>
date Fri, 18 Jan 2008 20:53:49 +0100
parents
children 0f12f6bb9739
line wrap: on
line source

module dwt.dwthelper.ResourceBundle;

class ResourceBundle {

    public this( char[] name ){
    }

    public char[] getString( char[] key ){
        return key;
    }

    public static ResourceBundle getBundle( char[] name ){
        return new ResourceBundle( name );
    }

}