diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dwt/dwthelper/ResourceBundle.d	Fri Jan 18 20:53:49 2008 +0100
@@ -0,0 +1,18 @@
+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 );
+    }
+
+}
+
+