/plugins/JavaSideKick/tags/javasidekick-2-3-6/src/sidekick/java/options/FilterOptions.java

# · Java · 45 lines · 13 code · 6 blank · 26 comment · 0 complexity · 10a8cc12e0920c020bc0eb0eabbe9625 MD5 · raw file

  1. /*
  2. * FilterOptions.java - Immutable filter options for JBrowse
  3. *
  4. * Copyright (c) 1999-2001 George Latkiewicz, Andre Kaplan
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version 2
  9. * of the License, or any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19. */
  20. package sidekick.java.options;
  21. /**
  22. * Interface for accessing Filter options for JBrowse
  23. * @author George Latkiewicz
  24. * @author Andre Kaplan
  25. * @version $Id: FilterOptions.java 1029 2006-07-21 20:00:43Z daleanson $
  26. **/
  27. public interface FilterOptions
  28. {
  29. // Filter options (WHAT)
  30. boolean getShowImports();
  31. boolean getShowFields();
  32. boolean getShowVariables();
  33. boolean getShowPrimitives();
  34. boolean getShowInitializers();
  35. boolean getShowGeneralizations();
  36. boolean getShowThrows();
  37. int getTopLevelVisIndex();
  38. int getMemberVisIndex();
  39. }