
tokenizertest
By:
ace on
Jan 27th, 2010 | syntax:
None | size: 0.51 KB | hits: 21 | expires: Never
import java.util.StringTokenizer;
/**
* Write a description of class StringTokenizerTest here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class TokenizerTest
{
// instance variables - replace the example below with your own
private StringTokenizer testString;
/**
* Constructor for objects of class StringTokenizerTest
*/
public TokenizerTest()
{
// initialise instance variables
testString = new StringTokenizer();
}
}