Merged gcj-eclipse branch to trunk.

From-SVN: r120621
This commit is contained in:
Tom Tromey
2007-01-09 19:58:05 +00:00
parent c648dedbde
commit 97b8365caf
17478 changed files with 606493 additions and 100744 deletions
@@ -166,6 +166,16 @@ class CharIndexedInputStream implements CharIndexed {
"difficult to support getLastMatch for an input stream");
}
public void setHitEnd(REMatch match) {
throw new UnsupportedOperationException(
"difficult to support setHitEnd for an input stream");
}
public boolean hitEnd() {
throw new UnsupportedOperationException(
"difficult to support hitEnd for an input stream");
}
public int getAnchor() {
throw new UnsupportedOperationException(
"difficult to support getAnchor for an input stream");
@@ -176,6 +186,10 @@ class CharIndexedInputStream implements CharIndexed {
"difficult to support setAnchor for an input stream");
}
public boolean move1(int index) {
throw new UnsupportedOperationException(
"difficult to support move1 for an input stream");
}
}