Package org.cytoscape.application.swing
Class AbstractToolBarComponent
- java.lang.Object
-
- org.cytoscape.application.swing.AbstractToolBarComponent
-
- All Implemented Interfaces:
ToolBarComponent
public abstract class AbstractToolBarComponent extends Object implements ToolBarComponent
An abstract, convenience implementation of ToolBarComponent.Module:
swing-application-api
To use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>swing-application-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.
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean
isEnabled
Whether the toolbar component is enabled or not.protected float
toolbarGravity
The gravity for this toolbar component.
-
Constructor Summary
Constructors Constructor Description AbstractToolBarComponent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description float
getToolBarGravity()
Returns the gravity value for this toolbar component.void
setToolBarGravity(float gravity)
Sets the gravity for this toolbar component.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.cytoscape.application.swing.ToolBarComponent
getComponent
-
-
-
-
Method Detail
-
setToolBarGravity
public void setToolBarGravity(float gravity)
Sets the gravity for this toolbar component.- Parameters:
gravity
- The gravity for this toolbar component.
-
getToolBarGravity
public float getToolBarGravity()
Returns the gravity value for this toolbar component.- Specified by:
getToolBarGravity
in interfaceToolBarComponent
- Returns:
- the gravity value for this toolbar component.
-
-