Package | Description |
---|---|
org.cytoscape.application.swing |
This package defines the various interfaces, abstract classes, and enums
that represent the Cytoscape Swing Application API.
|
org.cytoscape.jobs |
This package provides a mechanism for executing remote jobs from within Cytoscape.
|
org.cytoscape.view.model |
Module for View Models and Visual Properties.
|
org.cytoscape.view.model.events |
Definitions for View-Model related events and their listeners.
|
org.cytoscape.view.presentation |
API set for rendering engines (visualizers).
|
org.cytoscape.view.presentation.property |
Implementations of basic VisualProperty objects and VisualLexicons.
|
org.cytoscape.view.vizmap |
Visual Mapping basic API module.
|
org.cytoscape.view.vizmap.gui.editor |
Provides editors for Visual Properties and editor managers for VizMap GUI.
|
org.cytoscape.view.vizmap.gui.event |
Provides events and listeners of LexiconState, visual style switch and vizMap event, as well as VizMap event handler manager.
|
org.cytoscape.view.vizmap.gui.util |
Create discrete mapping for a given set of attribute values
|
org.cytoscape.view.vizmap.mappings |
APIs for different mapping functions -- continuous mapping, discrete mapping and pass through mapping.
|
Modifier and Type | Field and Description |
---|---|
protected VisualProperty<S> |
AbstractViewUpdater.vp
The
VisualProperty that the RowsSetListener is provided for. |
Constructor and Description |
---|
AbstractViewUpdater(VisualProperty<S> vp,
String columnName,
Map<CyRow,View<?>> rowViewMap)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
default CyJobData |
CyJobDataService.addData(CyJobData data,
String key,
CyNetworkView networkView,
List<? extends CyIdentifiable> nodesAndEdges,
List<VisualProperty<?>> properties)
An optional method to
add network view data to a
CyJobData item. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractVisualProperty<T>
An abstract implementation of VisualProperty that omits the methods dealing
with serializing data.
|
Modifier and Type | Method and Description |
---|---|
VisualProperty<NullDataType> |
VisualLexicon.getRootVisualProperty()
Get root of this tree.
|
VisualProperty<?> |
VisualLexiconNode.getVisualProperty()
Returns wrapped VisualProperty object.
|
VisualProperty<?> |
VisualLexicon.lookup(Class<?> type,
String identifier)
Returns the appropriate visual property for the descriptive
string.
|
Modifier and Type | Method and Description |
---|---|
Collection<VisualProperty<?>> |
VisualLexicon.getAllDescendants(VisualProperty<?> prop)
Get collection of visual properties for a given object type (node/edge/network).
|
Set<VisualProperty<?>> |
VisualLexicon.getAllVisualProperties()
Returns the Set of VisualPropertys supported by this Renderer.
|
Modifier and Type | Method and Description |
---|---|
void |
View.clearValueLock(VisualProperty<?> vp)
Clear value lock for given VisualProperty.
|
Collection<VisualProperty<?>> |
VisualLexicon.getAllDescendants(VisualProperty<?> prop)
Get collection of visual properties for a given object type (node/edge/network).
|
<T> Set<T> |
VisualLexicon.getSupportedValueRange(VisualProperty<T> vp)
Returns a filtered value range for a
VisualProperty that uses a DiscreteRange . |
VisualLexiconNode |
VisualLexicon.getVisualLexiconNode(VisualProperty<?> vp)
Get a tree node in for the given VisualProperty.
|
<T> T |
View.getVisualProperty(VisualProperty<T> vp)
Get the actual value for the given visual property.
|
boolean |
View.isDirectlyLocked(VisualProperty<?> vp)
Returns true if the given VisualProperty's value has been locked.
|
boolean |
View.isSet(VisualProperty<?> vp)
Indicates whether or not the passed visual property is set with a non-null value.
|
boolean |
VisualLexicon.isSupported(VisualProperty<?> vp)
Test the given Visual Property is supported in this Lexicon.
|
boolean |
View.isValueLocked(VisualProperty<?> vp)
Returns true if the value of the given VisualProperty or one of its
ancestors is locked.
|
<T,V extends T> |
View.setLockedValue(VisualProperty<? extends T> vp,
V value)
Set locked value.
|
<T,V extends T> |
CyNetworkView.setViewDefault(VisualProperty<? extends T> vp,
V defaultValue)
Sets the default value to be used for the specified visual property.
|
<T,V extends T> |
View.setVisualProperty(VisualProperty<? extends T> vp,
V value)
Assign a value to the given Visual Property of this view.
|
Constructor and Description |
---|
VisualLexiconNode(VisualProperty<?> vp,
VisualLexiconNode parent)
Constructs this VisualLexiconNode.
|
Modifier and Type | Method and Description |
---|---|
VisualProperty<?> |
ViewChangeRecord.getVisualProperty()
Returns the visual property that has been changed.
|
Constructor and Description |
---|
ViewChangeRecord(View<T> view,
VisualProperty<?> vp,
Object value)
Constructor.
|
ViewChangeRecord(View<T> view,
VisualProperty<?> vp,
Object value,
boolean lockedValue) |
Modifier and Type | Method and Description |
---|---|
<V> Icon |
RenderingEngine.createIcon(VisualProperty<V> vp,
V value,
int width,
int height)
Create
Icon object for the given VisualProperty value. |
Modifier and Type | Class and Description |
---|---|
class |
ArrowShapeVisualProperty
Visual Property for
ArrowShape values. |
class |
BooleanVisualProperty
Visual Property for
Boolean values. |
class |
DefaultVisualizableVisualProperty
Visual Property to represent abstract concept such as Node or Edge.
|
class |
DoubleVisualProperty
Visual Property for
Double values. |
class |
EdgeBendVisualProperty
Visual Property for Edge
Bend values. |
class |
FontVisualProperty
Visual Property for
Font values. |
class |
IntegerVisualProperty
Visual Property for
Integer values. |
class |
LineTypeVisualProperty
Visual Property for
LineType values. |
class |
NodeShapeVisualProperty
Visual Property for
NodeShape values. |
class |
NullVisualProperty
Visual Property for root.
|
class |
PaintVisualProperty
Visual Property for
Paint values. |
class |
StringVisualProperty
Visual Property for
String values. |
Modifier and Type | Method and Description |
---|---|
VisualProperty<NullDataType> |
BasicVisualLexicon.getRootVisualProperty() |
VisualProperty<?> |
BasicVisualLexicon.lookup(Class<?> type,
String id) |
Modifier and Type | Method and Description |
---|---|
Collection<VisualProperty<?>> |
BasicVisualLexicon.getAllDescendants(VisualProperty<?> prop) |
Set<VisualProperty<?>> |
BasicVisualLexicon.getAllVisualProperties() |
Modifier and Type | Method and Description |
---|---|
protected void |
BasicVisualLexicon.addIdentifierMapping(Class<?> type,
String id,
VisualProperty<?> vp) |
protected void |
BasicVisualLexicon.addVisualProperty(VisualProperty<?> vp,
VisualProperty<?> parent)
Insert a
VisualProperty to the tree. |
protected void |
BasicVisualLexicon.addVisualProperty(VisualProperty<?> vp,
VisualProperty<?> parent)
Insert a
VisualProperty to the tree. |
Collection<VisualProperty<?>> |
BasicVisualLexicon.getAllDescendants(VisualProperty<?> prop) |
<T> Set<T> |
BasicVisualLexicon.getSupportedValueRange(VisualProperty<T> vp) |
VisualLexiconNode |
BasicVisualLexicon.getVisualLexiconNode(VisualProperty<?> vp) |
static boolean |
VisualPropertyUtil.isChildOf(VisualProperty<?> parent,
VisualProperty<?> vp,
VisualLexicon lexicon)
Check whether the given VisualProperty is a child of parent vp or not.
|
static boolean |
VisualPropertyUtil.isChildOf(VisualProperty<?> parent,
VisualProperty<?> vp,
VisualLexicon lexicon)
Check whether the given VisualProperty is a child of parent vp or not.
|
boolean |
BasicVisualLexicon.isSupported(VisualProperty<?> vp) |
Constructor and Description |
---|
BasicVisualLexicon(VisualProperty<NullDataType> rootVisualProperty)
Constructor for VisualLexicon.
|
Modifier and Type | Method and Description |
---|---|
VisualProperty<T> |
VisualPropertyDependency.getParentVisualProperty()
Returns the parent visual property for this dependency.
|
VisualProperty<V> |
VisualMappingFunction.getVisualProperty()
Visual Property associated with this function.
|
Modifier and Type | Method and Description |
---|---|
Set<VisualProperty<?>> |
VisualPropertyDependency.getVisualProperties()
A set of Visual Properties to be set by the parent if locked.
|
Modifier and Type | Method and Description |
---|---|
<K,V> VisualMappingFunction<K,V> |
VisualMappingFunctionFactory.createVisualMappingFunction(String attributeName,
Class<K> attrValueType,
VisualProperty<V> vp)
Create a new VisualMappingFunction.
|
<V> V |
VisualStyle.getDefaultValue(VisualProperty<V> vp)
Returns default value for the VisualProperty.
|
<V> VisualMappingFunction<?,V> |
VisualStyle.getVisualMappingFunction(VisualProperty<V> vp)
Get current VisualMappingFunction for the VisualProperty.
|
void |
VisualStyle.removeVisualMappingFunction(VisualProperty<?> vp)
Remove a VisualMappingFunction for the VisualProperty.
|
<V,S extends V> |
VisualStyle.setDefaultValue(VisualProperty<V> vp,
S value)
Set default value for the VisualProperty.
|
Constructor and Description |
---|
VisualPropertyDependency(String id,
String displayName,
Set<VisualProperty<T>> vpSet,
VisualLexicon lexicon)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
PropertyEditor |
EditorManager.getContinuousEditor(VisualProperty<?> vp)
Returns the continuous editor for the specified visual property.
|
PropertyEditor |
VisualPropertyEditor2.getPropertyEditor(VisualProperty<T> vizProp)
Returns
PropertyEditor object for this data type. |
<V> VisualPropertyEditor<V> |
EditorManager.getVisualPropertyEditor(VisualProperty<V> vp)
Returns the
VisualPropertyEditor for the given VisualProperty . |
<S extends V> |
VisualPropertyValueEditor.showEditor(Component parent,
S initialValue,
VisualProperty<S> vizPropBeingEdited)
Display the editor and get a new value.
|
<V> V |
EditorManager.showVisualPropertyValueEditor(Component parentComponent,
VisualProperty<V> type,
V initialVal)
Display value editor to get a new value.
|
Modifier and Type | Method and Description |
---|---|
Set<VisualProperty<?>> |
LexiconStateChangedEvent.getDisabled()
Get set of Visual Properties to be disabled in the lexicon.
|
Set<VisualProperty<?>> |
LexiconStateChangedEvent.getEnabled()
Get set of Visual Properties to be enabled in the lexicon.
|
Constructor and Description |
---|
LexiconStateChangedEvent(Object source,
Set<VisualProperty<?>> enabled,
Set<VisualProperty<?>> disabled)
Constructor of the event.
|
LexiconStateChangedEvent(Object source,
Set<VisualProperty<?>> enabled,
Set<VisualProperty<?>> disabled)
Constructor of the event.
|
Modifier and Type | Method and Description |
---|---|
static void |
PropertySheetUtil.addBasicVisualProperty(VisualProperty<?> vp)
Deprecated.
|
static boolean |
PropertySheetUtil.isBasic(VisualProperty<?> vp)
Deprecated.
|
static Boolean |
PropertySheetUtil.isCompatible(VisualProperty<?> vp)
Returns true if given VisualProperty is compatible with current rendering engine.
|
static void |
PropertySheetUtil.removeIncompatibleVisualProperty(VisualProperty<?> vp)
Remove incompatible VisualProperty from list if new RenderingEngine can handle it.
|
Modifier and Type | Field and Description |
---|---|
protected VisualProperty<V> |
AbstractVisualMappingFunction.vp
Visual Property used in this mapping.
|
Modifier and Type | Method and Description |
---|---|
VisualProperty<V> |
AbstractVisualMappingFunction.getVisualProperty() |
Constructor and Description |
---|
AbstractVisualMappingFunction(String columnName,
Class<K> columnType,
VisualProperty<V> vp,
CyEventHelper eventHelper)
Constructs this AbstractVisualMappingFunction.
|
Copyright 2011-2015 Cytoscape Consortium. All rights reserved.