You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MySubClass.java 160B

12345678910111213
  1. package org.othtests;
  2. public class MySubClass extends MyClass {
  3. public String doOne() {
  4. return "one";
  5. }
  6. public String doTwo() {
  7. return "two";
  8. }
  9. }