Skip to content

Instantly share code, notes, and snippets.

@iyengarajay
Last active June 1, 2016 13:06
Embed
What would you like to do?
public class ConcreteClass implements Child {
public void methodTwo(){
System.out.println("ConcreteClass : Method two...");
}
public static void main(String[] args) {
ConcreteClass concreteClass = new ConcreteClass ();
concreteClass.methodOne();
concreteClass.methodTwo();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment