Class LazyFeatureHolder
- java.lang.Object
-
- org.biojava.utils.AbstractChangeable
-
- org.biojava.bio.seq.LazyFeatureHolder
-
- All Implemented Interfaces:
FeatureHolder,Changeable
public abstract class LazyFeatureHolder extends AbstractChangeable implements FeatureHolder
Wrapper implementation of FeatureHolder which calls a method to create a contained FeatureHolder on demand. This is an abstract class and is normally used like: FeatureHolder fh = new LazyFeatureHolder() { protected FeatureHolder createFeatureHolder() { SimpleFeatureHolder features = new SimpleFeatureHolder(); // Create some features in here... return features; } } ;- Since:
- 1.2
- Author:
- Thomas Down, Matthew Pocock
- See Also:
RichFeatureRelationshipHolder
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.biojava.bio.seq.FeatureHolder
FeatureHolder.EmptyFeatureHolder
-
-
Field Summary
-
Fields inherited from interface org.biojava.bio.seq.FeatureHolder
EMPTY_FEATURE_HOLDER, FEATURES, SCHEMA
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedLazyFeatureHolder()Construct a LazyFeatureHolder with the schema of its contained featureholderprotectedLazyFeatureHolder(FeatureFilter schema)Construct a LazyFeatureHolder with the specified schema
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description booleancontainsFeature(Feature f)Check if the feature is present in this holder.intcountFeatures()Count how many features are contained.FeaturecreateFeature(Feature.Template template)Create a new Feature, and add it to this FeatureHolder.protected abstract FeatureHoldercreateFeatureHolder()Iteratorfeatures()Iterate over the features in no well defined order.FeatureHolderfilter(FeatureFilter ff)Query this set of features using a suppliedFeatureFilter.FeatureHolderfilter(FeatureFilter ff, boolean recurse)Return a new FeatureHolder that contains all of the children of this one that passed the filter fc.protected voidflushFeatures()protected ChangeSupportgetChangeSupport(ChangeType ct)Called to retrieve the ChangeSupport for this object.FeatureFiltergetSchema()Return a schema-filter for thisFeatureHolder.voidremoveFeature(Feature f)Remove a feature from this FeatureHolder.-
Methods inherited from class org.biojava.utils.AbstractChangeable
addChangeListener, addChangeListener, generateChangeSupport, hasListeners, hasListeners, isUnchanging, removeChangeListener, removeChangeListener
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.biojava.utils.Changeable
addChangeListener, addChangeListener, isUnchanging, removeChangeListener, removeChangeListener
-
-
-
-
Constructor Detail
-
LazyFeatureHolder
protected LazyFeatureHolder()
Construct a LazyFeatureHolder with the schema of its contained featureholder
-
LazyFeatureHolder
protected LazyFeatureHolder(FeatureFilter schema)
Construct a LazyFeatureHolder with the specified schema
-
-
Method Detail
-
getSchema
public FeatureFilter getSchema()
Description copied from interface:FeatureHolderReturn a schema-filter for thisFeatureHolder. This is a filter which allFeatures immediately contained by thisFeatureHolderwill match. It need not directly match their child features, but it can (and should!) provide information about them usingFeatureFilter.OnlyChildrenfilters. In cases where there is no feature hierarchy, this can be indicated by includingFeatureFilter.leafin the schema filter.For the truly non-informative case, it is possible to return
FeatureFilter.all. However, it is almost always possible to provide slightly more information that this. For example,Sequenceobjects should, at a minimum, returnFeatureFilter.top_level.Featureobjects should, as a minimum, returnFeatureFilter.ByParent(new FeatureFilter.ByFeature(this)).- Specified by:
getSchemain interfaceFeatureHolder- Returns:
- the schema filter
-
createFeatureHolder
protected abstract FeatureHolder createFeatureHolder()
-
flushFeatures
protected void flushFeatures()
-
features
public Iterator features()
Description copied from interface:FeatureHolderIterate over the features in no well defined order.- Specified by:
featuresin interfaceFeatureHolder- Returns:
- an Iterator
-
countFeatures
public int countFeatures()
Description copied from interface:FeatureHolderCount how many features are contained.- Specified by:
countFeaturesin interfaceFeatureHolder- Returns:
- a positive integer or zero, equal to the number of features contained
-
filter
public FeatureHolder filter(FeatureFilter ff)
Description copied from interface:FeatureHolderQuery this set of features using a suppliedFeatureFilter.- Specified by:
filterin interfaceFeatureHolder- Parameters:
ff- theFeatureFilterto apply.- Returns:
- all features in this container which match
filter.
-
filter
public FeatureHolder filter(FeatureFilter ff, boolean recurse)
Description copied from interface:FeatureHolderReturn a new FeatureHolder that contains all of the children of this one that passed the filter fc. This method is scheduled for deprecation. Use the 1-arg filter instead.- Specified by:
filterin interfaceFeatureHolder- Parameters:
ff- the FeatureFilter to applyrecurse- true if all features-of-features should be scanned, and a single flat collection of features returned, or false if just immediate children should be filtered.
-
createFeature
public Feature createFeature(Feature.Template template) throws BioException, ChangeVetoException
Description copied from interface:FeatureHolderCreate a new Feature, and add it to this FeatureHolder. This method will generally only work on Sequences, and on some Features which have been attached to Sequences.- Specified by:
createFeaturein interfaceFeatureHolder- Throws:
BioException- if something went wrong during creating the featureChangeVetoException- if this FeatureHolder does not support creation of new features, or if the change was vetoed
-
removeFeature
public void removeFeature(Feature f) throws ChangeVetoException, BioException
Description copied from interface:FeatureHolderRemove a feature from this FeatureHolder.- Specified by:
removeFeaturein interfaceFeatureHolder- Throws:
ChangeVetoException- if this FeatureHolder does not support feature removal or if the change was vetoedBioException- if there was an error removing the feature
-
containsFeature
public boolean containsFeature(Feature f)
Description copied from interface:FeatureHolderCheck if the feature is present in this holder.- Specified by:
containsFeaturein interfaceFeatureHolder- Parameters:
f- the Feature to check- Returns:
- true if f is in this set
-
getChangeSupport
protected ChangeSupport getChangeSupport(ChangeType ct)
Description copied from class:AbstractChangeableCalled to retrieve the ChangeSupport for this object.Your implementation of this method should have the following structure:
It is usual for the forwarding listeners (someForwarder in this example) to be transient and lazily instantiated. Be sure to register & unregister the forwarder in the code that does the ChangeEvent handling in setter methods.ChangeSupport cs = super.getChangeSupport(ct); if(someForwarder == null && ct.isMatching(SomeInterface.SomeChangeType)) { someForwarder = new ChangeForwarder(... this.stateVariable.addChangeListener(someForwarder, VariableInterface.AChange); } return cs;- Overrides:
getChangeSupportin classAbstractChangeable
-
-