classpath progress

This commit is contained in:
Joel Dice
2007-07-28 20:15:45 -06:00
parent a9e10d1c7f
commit 51943427ad
9 changed files with 120 additions and 11 deletions

View File

@ -23,10 +23,19 @@ public class StringBuffer {
return this;
}
public synchronized StringBuffer deleteCharAt(int i) {
sb.deleteCharAt(i);
return this;
}
public synchronized int length() {
return sb.length();
}
public synchronized void setLength(int v) {
sb.setLength(v);
}
public synchronized void getChars(int srcOffset, int srcLength, char[] dst,
int dstOffset)
{