Created
January 30, 2015 17:26
-
-
Save dardison/44a08fdc7b0a0f29a36d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public abstract class Example implements IsWidget { | |
private String title; | |
public Example(String title) { | |
super(); | |
this.title = title; | |
} | |
public String getTitle() { | |
return title; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment