Skip to content

Instantly share code, notes, and snippets.

@eugener
Created October 16, 2010 02:26
Show Gist options
  • Save eugener/629315 to your computer and use it in GitHub Desktop.
Save eugener/629315 to your computer and use it in GitHub Desktop.
class PreferencePageClassScanner extends ComponentClassScanner {
public PreferencePageClassScanner() {
super();
addIncludeFilter( new AssignableTypeFilter(JComponent.class));
addIncludeFilter( new AnnotationTypeFilter(PreferencePage.class));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment