Skip to content

Instantly share code, notes, and snippets.

@iyengarajay
Last active June 1, 2016 13:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iyengarajay/0b31e6842a0e3bcc4f2340354c1d05a3 to your computer and use it in GitHub Desktop.
Save iyengarajay/0b31e6842a0e3bcc4f2340354c1d05a3 to your computer and use it in GitHub Desktop.
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