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

public interface CharSequence {
	int length();
}

Back to the top