Class AbstractVisualPropertyValue
- java.lang.Object
-
- org.cytoscape.view.presentation.property.values.AbstractVisualPropertyValue
-
- All Implemented Interfaces:
VisualPropertyValue
public abstract class AbstractVisualPropertyValue extends Object implements VisualPropertyValue
Base class for allVisualPropertyValue.Module:
presentation-apiTo use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>presentation-api</artifactId> </dependency>
Cytoscape Backwards Compatibility (Abstract Class): This class is abstract and meant to be extended by users. This means that we may add methods for minor version updates. Methods will only be removed for major version updates.
-
-
Constructor Summary
Constructors Constructor Description AbstractVisualPropertyValue(String displayName, String serializableString)Constructs an AbstractVisualPropertyValue.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDisplayName()Name of this value type.StringgetSerializableString()Returns serializable representation of this value.StringtoString()
-
-
-
Method Detail
-
getDisplayName
public String getDisplayName()
Description copied from interface:VisualPropertyValueName of this value type. For example, Arrow Shape or Node Shape.- Specified by:
getDisplayNamein interfaceVisualPropertyValue- Returns:
- human readable name of this object type.
-
getSerializableString
public String getSerializableString()
Description copied from interface:VisualPropertyValueReturns serializable representation of this value.- Specified by:
getSerializableStringin interfaceVisualPropertyValue- Returns:
- Value in serializable string form.
-
-