Skip to content

Instantly share code, notes, and snippets.

@dardison
Created January 30, 2015 17:26
Show Gist options
  • Save dardison/44a08fdc7b0a0f29a36d to your computer and use it in GitHub Desktop.
Save dardison/44a08fdc7b0a0f29a36d to your computer and use it in GitHub Desktop.
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