Package org.cytoscape.property
Class SimpleCyProperty<P>
- java.lang.Object
-
- org.cytoscape.property.SimpleCyProperty<P>
-
- Type Parameters:
P-
- All Implemented Interfaces:
CyProperty<P>
public final class SimpleCyProperty<P> extends Object implements CyProperty<P>
A simple implementation of CyProperty suitable for general purpose use.
Cytoscape Backwards Compatibility (Final Class): This class is final and therefore can't be extended by users. This means that we may add methods for minor version updates. Methods will only be removed for major version updates.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.cytoscape.property.CyProperty
CyProperty.SavePolicy
-
-
Field Summary
Fields Modifier and Type Field Description static StringCORE_PROPRERTY_NAMECore Cytoscape Property (Cytoscape System Property)-
Fields inherited from interface org.cytoscape.property.CyProperty
DEFAULT_PROPS_CONFIG_DIR
-
-
Constructor Summary
Constructors Constructor Description SimpleCyProperty(String name, P properties, Class<? extends P> propertyType, CyProperty.SavePolicy savePolicy)Properties is a non-null Properties object that this CyProperty object should encapsulate.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()Returns the name of the CyProperty.PgetProperties()Return a property object.Class<? extends P>getPropertyType()Returns the type of the property object.CyProperty.SavePolicygetSavePolicy()Returns theCyProperty.SavePolicyof the CyProperty.StringtoString()
-
-
-
Field Detail
-
CORE_PROPRERTY_NAME
public static final String CORE_PROPRERTY_NAME
Core Cytoscape Property (Cytoscape System Property)- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SimpleCyProperty
public SimpleCyProperty(String name, P properties, Class<? extends P> propertyType, CyProperty.SavePolicy savePolicy)
Properties is a non-null Properties object that this CyProperty object should encapsulate.- Parameters:
properties- The non-null Properties object this CyProperty object should encapsulate. Throws NullPointerException if Properties is null.savePolicy- theCyProperty.SavePolicyof this CyProperty object.
-
-
Method Detail
-
getName
public String getName()
Returns the name of the CyProperty.- Specified by:
getNamein interfaceCyProperty<P>- Returns:
- The name of the CyProperty.
-
getProperties
public P getProperties()
Return a property object.- Specified by:
getPropertiesin interfaceCyProperty<P>- Returns:
- A property object of type P.
-
getSavePolicy
public CyProperty.SavePolicy getSavePolicy()
Returns theCyProperty.SavePolicyof the CyProperty.- Specified by:
getSavePolicyin interfaceCyProperty<P>- Returns:
- the
CyProperty.SavePolicyof the CyProperty.
-
getPropertyType
public Class<? extends P> getPropertyType()
Returns the type of the property object.- Specified by:
getPropertyTypein interfaceCyProperty<P>- Returns:
- the type of the property object.
-
-