From: Charles Ofoegbu Date: Tue, 20 Jan 2015 17:27:26 +0000 (+0000) Subject: clean up X-Git-Tag: Jalview_2_9~107^2~3 X-Git-Url: http://source.jalview.org/gitweb/?p=jalview.git;a=commitdiff_plain;h=cb4d30e6aca976babf6f512178e90eba05148301 clean up --- diff --git a/src/jalview/api/analysis/AnnotationFilterParameter.java b/src/jalview/api/analysis/AnnotationFilterParameter.java deleted file mode 100644 index c649972..0000000 --- a/src/jalview/api/analysis/AnnotationFilterParameter.java +++ /dev/null @@ -1,101 +0,0 @@ -package jalview.api.analysis; - -import java.util.ArrayList; -import java.util.List; - -public class AnnotationFilterParameter -{ - public enum ThresholdType - { - NO_THRESHOLD, BELOW_THRESHOLD, ABOVE_THRESHOLD; - } - - public enum SearchableAnnotationField - { - DISPLAY_STRING, DESCRIPTION; - } - private ThresholdType thresholdType; - - private float thresholdValue; - - private boolean filterAlphaHelix = false; - - private boolean filterBetaSheet = false; - - private boolean filterTurn = false; - - private String regexString; - - private List regexSearchFields = new ArrayList(); - - public ThresholdType getThresholdType() - { - return thresholdType; - } - - public void setThresholdType(ThresholdType thresholdType) - { - this.thresholdType = thresholdType; - } - - public float getThresholdValue() - { - return thresholdValue; - } - - public void setThresholdValue(float thresholdValue) - { - this.thresholdValue = thresholdValue; - } - - public String getRegexString() - { - return regexString; - } - - public void setRegexString(String regexString) - { - this.regexString = regexString; - } - - public List getRegexSearchFields() - { - return regexSearchFields; - } - - public void addRegexSearchField(SearchableAnnotationField regexSearchField) - { - this.regexSearchFields.add(regexSearchField); - } - - public boolean isFilterAlphaHelix() - { - return filterAlphaHelix; - } - - public void setFilterAlphaHelix(boolean alphaHelix) - { - this.filterAlphaHelix = alphaHelix; - } - - public boolean isFilterBetaSheet() - { - return filterBetaSheet; - } - - public void setFilterBetaSheet(boolean betaSheet) - { - this.filterBetaSheet = betaSheet; - } - - public boolean isFilterTurn() - { - return filterTurn; - } - - public void setFilterTurn(boolean turn) - { - this.filterTurn = turn; - } - -}