Skip to content

Instantly share code, notes, and snippets.

@Riduidel
Created June 27, 2011 12:13
Show Gist options
  • Select an option

  • Save Riduidel/1048754 to your computer and use it in GitHub Desktop.

Select an option

Save Riduidel/1048754 to your computer and use it in GitHub Desktop.
Adapting a domain object into a JComponent (or anything else, for that matter)
if(myObject.canAdapt(JComponent.class)) {
myPanel.add(myObject.getAdapter(JComponent.class));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment