mirror of
https://github.com/corda/corda.git
synced 2025-06-14 13:18:18 +00:00
add a few classes and methods to the classpath
Add java.lang.CharSequence, java.util.AbstractSet, java.util.AbstractCollection, Collections.unmodifiableSet, System.getProperty(String,String), etc.
This commit is contained in:
11
classpath/java/lang/CharSequence.java
Normal file
11
classpath/java/lang/CharSequence.java
Normal file
@ -0,0 +1,11 @@
|
||||
package java.lang;
|
||||
|
||||
public interface CharSequence {
|
||||
public char charAt(int index);
|
||||
|
||||
int length();
|
||||
|
||||
CharSequence subSequence(int start, int end);
|
||||
|
||||
String toString();
|
||||
}
|
Reference in New Issue
Block a user