Pastebin launched a little side project called HostCabi.net, check it out ;-)Don't like ads? PRO users don't see any ads ;-)
Guest

tokenizertest

By: ace on Jan 27th, 2010  |  syntax: None  |  size: 0.51 KB  |  hits: 21  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. import java.util.StringTokenizer;
  2.  
  3. /**
  4.  * Write a description of class StringTokenizerTest here.
  5.  *
  6.  * @author (your name)
  7.  * @version (a version number or a date)
  8.  */
  9. public class TokenizerTest
  10. {
  11.     // instance variables - replace the example below with your own
  12.     private StringTokenizer testString;
  13.  
  14.     /**
  15.      * Constructor for objects of class StringTokenizerTest
  16.      */
  17.     public TokenizerTest()
  18.     {
  19.         // initialise instance variables
  20.      testString = new StringTokenizer();
  21.     }
  22. }