package jalview.jbgui; import jalview.gui.structurechooser.StructureChooserQuerySource; import jalview.gui.structurechooser.ThreeDBStructureChooserQuerySource; /** * This inner class provides the data model for the structure filter combo-box * * @author tcnofoegbu * */ public class FilterOption { private String name; private String value; private String view; private boolean addSeparatorAfter; private StructureChooserQuerySource querySource; /** * Model for structure filter option * * @param name * - the name of the Option * @param value * - the value of the option * @param view * - the category of the filter option * @param addSeparatorAfter * - if true, a horizontal separator is rendered immediately after * this filter option, otherwise * @param structureChooserQuerySource - the query source that actions this filter */ public FilterOption(String name, String value, String view, boolean addSeparatorAfter, StructureChooserQuerySource structureChooserQuerySource) { this.name = name; this.value = value; this.view = view; this.querySource=structureChooserQuerySource; this.addSeparatorAfter = addSeparatorAfter; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } public String getView() { return view; } public void setView(String view) { this.view = view; } @Override public String toString() { return this.name; } public boolean isAddSeparatorAfter() { return addSeparatorAfter; } public void setAddSeparatorAfter(boolean addSeparatorAfter) { this.addSeparatorAfter = addSeparatorAfter; } public StructureChooserQuerySource getQuerySource() { return querySource; } }