Interface ParallelCoordinatesController<Component,Row,Column>
-
- All Known Implementing Classes:
AbstractParallelCoordinatesController
,SwingParallelCoordinatesController
public interface ParallelCoordinatesController<Component,Row,Column>
Control the user interactions with the view.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
PROPERTY_REORDERING
static java.lang.String
PROPERTY_REVERSING
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.macrofocus.high_d.interaction.InteractionMode
getMode()
MutableProperty<java.lang.Boolean>
getReordering()
MutableProperty<java.lang.Boolean>
getReversing()
ParallelCoordinatesView<Component,com.macrofocus.igraphics.CPColor,Row,Column>
getView()
void
setLocksmith(java.lang.Object locksmith)
void
setMode(com.macrofocus.high_d.interaction.InteractionMode mode)
void
setReordering(MutableProperty<java.lang.Boolean> reordering)
void
setReversing(MutableProperty<java.lang.Boolean> sorting)
void
setView(ParallelCoordinatesView<Component,com.macrofocus.igraphics.CPColor,Row,Column> view)
Replace the view currently under control.
-
-
-
Field Detail
-
PROPERTY_REORDERING
static final java.lang.String PROPERTY_REORDERING
- See Also:
- Constant Field Values
-
PROPERTY_REVERSING
static final java.lang.String PROPERTY_REVERSING
- See Also:
- Constant Field Values
-
-
Method Detail
-
getMode
com.macrofocus.high_d.interaction.InteractionMode getMode()
-
setMode
void setMode(com.macrofocus.high_d.interaction.InteractionMode mode)
-
setLocksmith
void setLocksmith(java.lang.Object locksmith)
-
setView
void setView(ParallelCoordinatesView<Component,com.macrofocus.igraphics.CPColor,Row,Column> view)
Replace the view currently under control.- Parameters:
view
- the ParallelCoordinatesView to use
-
getView
ParallelCoordinatesView<Component,com.macrofocus.igraphics.CPColor,Row,Column> getView()
-
getReordering
MutableProperty<java.lang.Boolean> getReordering()
-
setReordering
void setReordering(MutableProperty<java.lang.Boolean> reordering)
-
getReversing
MutableProperty<java.lang.Boolean> getReversing()
-
setReversing
void setReversing(MutableProperty<java.lang.Boolean> sorting)
-
-