comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:5406a8f6526d
1 /**
2 * Authors: Frank Benoit <keinfarbton@googlemail.com>
3 */
4 module dwt.dwthelper.ResourceBundle;
5
6 class ResourceBundle {
7
8 public this( char[] name ){
9 }
10
11 public char[] getString( char[] key ){
12 return key;
13 }
14
15 public static ResourceBundle getBundle( char[] name ){
16 return new ResourceBundle( name );
17 }
18
19 }
20
21