| /* | |
| * 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"); | |
| } | |
| } | |