Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b9a0d9e4176fa357a17dc8a7771306f1bdd2f385 (plain) (blame)
1
2
3
4
5
package java.lang;

public interface CharSequence {
	int length();
}

Back to the top