Skip to content

Instantly share code, notes, and snippets.

@mailtoharshit
Created August 22, 2012 00:52
Show Gist options
  • Save mailtoharshit/3421009 to your computer and use it in GitHub Desktop.
Save mailtoharshit/3421009 to your computer and use it in GitHub Desktop.
Interface
//Declaring and using Interface
public interface myInterface {
void doSomething (String thing);
}
public class MyClass implements MyInterface {
public void doSomething(String x);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment