blob: bc8bdc2e120d9e5cccfc12cc1e2d4fb202f4976a [file] [log] [blame]
/*
* Created on 16-Jul-03
*
* To change this generated comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
/**
* @author websterm
*
* To change this generated comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class TestStringBuffer {
public static void main(String[] args) {
StringBuffer sb = new StringBuffer("Test");
int offset = sb.indexOf("T");
}
}