Sha256: 6e974caa4f8d55667b7e74b81b78bf540c0d2177e8e10477fabde7a3560f3ef0
Contents?: true
Size: 833 Bytes
Versions: 2
Compression:
Stored size: 833 Bytes
Contents
public class TestSuperclass { protected String foo; public String method() { return "TestSuperclass#method"; } public String myLongMethodName() { return "TestSuperclass#myLongMethodName"; } public String myLongMethodNameWithABBRV() { return "TestSuperclass#myLongMethodNameWithABBRV"; } public boolean isFooBar() { return true; } public String getFoo() { return this.foo; } public void setFoo(String foo) { this.foo = foo; } public String testInterface(TestInterface ti) { return ti.method() + ti.myLongMethodNameWithABBRV(); } protected String protectedMethod() { return "TestSuperclass#protectedMethod"; } public String testProtectedMethod() { return protectedMethod(); } }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
java_override-0.1.4-java | test/java/TestSuperclass.java |
java_override-0.1.3-java | test/java/TestSuperclass.java |