Interface GraphMousePlugin
-
- All Known Implementing Classes:
AbstractGraphMousePlugin,AbstractPopupGraphMousePlugin,AnimatedPickingGraphMousePlugin,AnnotatingGraphMousePlugin,EditingGraphMousePlugin,EditingPopupGraphMousePlugin,LabelEditingGraphMousePlugin,LensMagnificationGraphMousePlugin,LensTranslatingGraphMousePlugin,PickingGraphMousePlugin,RotatingGraphMousePlugin,SatelliteAnimatedPickingGraphMousePlugin,SatelliteRotatingGraphMousePlugin,SatelliteScalingGraphMousePlugin,SatelliteShearingGraphMousePlugin,SatelliteTranslatingGraphMousePlugin,ScalingGraphMousePlugin,ShearingGraphMousePlugin,TranslatingGraphMousePlugin,ViewTranslatingGraphMousePlugin
public interface GraphMousePluginthe interface for all plugins to the PluggableGraphMouse
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancheckModifiers(java.awt.event.MouseEvent e)compare the set modifiers against those of the supplied eventintgetModifiers()return the mouse event modifiers that will activate this pluginvoidsetModifiers(int modifiers)set the mouse event modifiers that will activate this plugin
-
-
-
Method Detail
-
getModifiers
int getModifiers()
return the mouse event modifiers that will activate this plugin- Returns:
- modifiers
-
setModifiers
void setModifiers(int modifiers)
set the mouse event modifiers that will activate this plugin- Parameters:
modifiers-
-
checkModifiers
boolean checkModifiers(java.awt.event.MouseEvent e)
compare the set modifiers against those of the supplied event- Parameters:
e- an event to compare to- Returns:
- whether the member modifers match the event modifiers
-
-