Package org.biojava.bio
Class BeanAsAnnotation
java.lang.Object
org.biojava.utils.AbstractChangeable
org.biojava.bio.AbstractAnnotation
org.biojava.bio.BeanAsAnnotation
- All Implemented Interfaces:
Serializable
,Annotation
,Changeable
Create an Annotation with properties matching those of a JavaBean instance.
Note: this class is experimental and only partialy implemented.
- Since:
- 1.3
- Author:
- Matthew Pocock
- See Also:
-
Field Summary
Fields inherited from interface org.biojava.bio.Annotation
EMPTY_ANNOTATION, PROPERTY
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected final Map
Implement this to return the Map delegate.protected final boolean
A convenience method to see if we have allocated the properties Map.Methods inherited from class org.biojava.bio.AbstractAnnotation
asMap, containsProperty, equals, getProperty, hashCode, keys, removeProperty, setProperty, toString
Methods inherited from class org.biojava.utils.AbstractChangeable
addChangeListener, addChangeListener, generateChangeSupport, getChangeSupport, hasListeners, hasListeners, isUnchanging, removeChangeListener, removeChangeListener
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.biojava.utils.Changeable
addChangeListener, addChangeListener, isUnchanging, removeChangeListener, removeChangeListener
-
Constructor Details
-
BeanAsAnnotation
Create a new BeanAsAnnotation for a bean.- Parameters:
bean
- the JavaBean to view- Throws:
IntrospectionException
- if the bean could not be introspected
-
-
Method Details
-
getProperties
Description copied from class:AbstractAnnotation
Implement this to return the Map delegate. Modifying this return value will modify the properties associated with this annotation. From code in the 1.2 version of AbstractAnnotation This is required for the implementation of an Annotation that extends AbstractAnnotation. Where possible implementations should be backed with aLinkedHashMap
or similar so properties are iterated in the order they were added.- Specified by:
getProperties
in classAbstractAnnotation
- Returns:
- a Map containing all properties
-
propertiesAllocated
Description copied from class:AbstractAnnotation
A convenience method to see if we have allocated the properties Map. This is required for the implementation of an Annotation that extends AbstractAnnotation.- Specified by:
propertiesAllocated
in classAbstractAnnotation
- Returns:
- true if the properties have been allocated, false otherwise
-