blob: 672b91954e3ad98881bcf64f19277cbfec204654 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package java.text;
public class ParsePosition
{
public ParsePosition(int index) { throw new RuntimeException("Stub!"); }
public boolean equals(java.lang.Object object) { throw new RuntimeException("Stub!"); }
public int getErrorIndex() { throw new RuntimeException("Stub!"); }
public int getIndex() { throw new RuntimeException("Stub!"); }
public int hashCode() { throw new RuntimeException("Stub!"); }
public void setErrorIndex(int index) { throw new RuntimeException("Stub!"); }
public void setIndex(int index) { throw new RuntimeException("Stub!"); }
public java.lang.String toString() { throw new RuntimeException("Stub!"); }
}
|