diff dwtx/dwtxhelper/StringTokenizer.d @ 162:1a5b8f8129df

...
author Frank Benoit <benoit@tionex.de>
date Mon, 08 Sep 2008 00:51:37 +0200
parents 25f1f92fa3df
children
line wrap: on
line diff
--- a/dwtx/dwtxhelper/StringTokenizer.d	Wed Aug 27 14:49:30 2008 +0200
+++ b/dwtx/dwtxhelper/StringTokenizer.d	Mon Sep 08 00:51:37 2008 +0200
@@ -1,4 +1,48 @@
 module dwtx.dwtxhelper.StringTokenizer;
 
+import dwt.dwthelper.utils;
+
 class StringTokenizer {
+
+    this(String){
+        implMissing(__FILE__,__LINE__);
+    }
+
+    this(String,String){
+        implMissing(__FILE__,__LINE__);
+    }
+
+    this(String,String,bool){
+        implMissing(__FILE__,__LINE__);
+    }
+
+    bool hasMoreTokens(){
+        implMissing(__FILE__,__LINE__);
+        return false;
+    }
+
+    String nextToken(){
+        implMissing(__FILE__,__LINE__);
+        return null;
+    }
+
+    String nextToken(String delim){
+        implMissing(__FILE__,__LINE__);
+        return null;
+    }
+
+    bool hasMoreElements(){
+        implMissing(__FILE__,__LINE__);
+        return false;
+    }
+
+    Object nextElement(){
+        implMissing(__FILE__,__LINE__);
+        return null;
+    }
+
+    int countTokens(){
+        implMissing(__FILE__,__LINE__);
+        return 0;
+    }
 }