view dwt/dwthelper/ResourceBundle.d @ 0:5406a8f6526d

Add initial files
author John Reimer <terminal.node@gmail.com
date Sun, 20 Jan 2008 21:50:55 -0800
parents
children 00a333240696
line wrap: on
line source

/**
 * Authors: Frank Benoit <keinfarbton@googlemail.com>
 */
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 );
    }

}