/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
- /*
- * FilterOptions.java - Immutable filter options for JBrowse
- *
- * Copyright (c) 1999-2001 George Latkiewicz, Andre Kaplan
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
- package sidekick.java.options;
- /**
- * Interface for accessing Filter options for JBrowse
- * @author George Latkiewicz
- * @author Andre Kaplan
- * @version $Id: FilterOptions.java 1029 2006-07-21 20:00:43Z daleanson $
- **/
- public interface FilterOptions
- {
- // Filter options (WHAT)
- boolean getShowImports();
- boolean getShowFields();
- boolean getShowVariables();
- boolean getShowPrimitives();
- boolean getShowInitializers();
- boolean getShowGeneralizations();
- boolean getShowThrows();
- int getTopLevelVisIndex();
- int getMemberVisIndex();
- }