X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2Ffeatures%2FFeatureMatcherSetI.java;h=989424c8242098c727a4ceb656697522a9972ab5;hb=a0bd24f90375fc1d4be619bf65746a912dfcfc89;hp=f064770d3ee1350053d5041433e9731252b00d56;hpb=ef14d83cfe8ca0bb2271d50d638516cdc90c2b8b;p=jalview.git diff --git a/src/jalview/datamodel/features/FeatureMatcherSetI.java b/src/jalview/datamodel/features/FeatureMatcherSetI.java index f064770..989424c 100644 --- a/src/jalview/datamodel/features/FeatureMatcherSetI.java +++ b/src/jalview/datamodel/features/FeatureMatcherSetI.java @@ -1,3 +1,23 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors + * + * This file is part of Jalview. + * + * Jalview 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 3 + * of the License, or (at your option) any later version. + * + * Jalview 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 Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. + */ package jalview.datamodel.features; import jalview.datamodel.SequenceFeature; @@ -20,14 +40,13 @@ public interface FeatureMatcherSetI boolean matches(SequenceFeature feature); /** - * Answers a new object that matches the logical AND of this and m + * Adds (ANDs) match condition m to this object's matcher set * * @param m - * @return * @throws IllegalStateException * if an attempt is made to AND to existing OR-ed conditions */ - FeatureMatcherSetI and(FeatureMatcherI m); + void and(FeatureMatcherI m); /** * Answers true if any second condition is AND-ed with this one, false if it @@ -38,14 +57,13 @@ public interface FeatureMatcherSetI boolean isAnded(); /** - * Answers a new object that matches the logical OR of this and m + * Adds (ORs) the given condition to this object's match conditions * * @param m - * @return * @throws IllegalStateException * if an attempt is made to OR to existing AND-ed conditions */ - FeatureMatcherSetI or(FeatureMatcherI m); + void or(FeatureMatcherI m); /** * Answers an iterator over the combined match conditions @@ -60,4 +78,11 @@ public interface FeatureMatcherSetI * @return */ boolean isEmpty(); + + /** + * Answers a string representation of this object suitable for use when + * persisting data, in a format that can be reliably read back. Any changes to + * the format should be backwards compatible. + */ + String toStableString(); }