| prefuse.action.Action prefuse.action.GroupAction
All known Subclasses: prefuse.action.filter.VisibilityFilter, prefuse.action.animate.VisibilityAnimator, prefuse.action.ItemAction, prefuse.action.layout.Layout, prefuse.action.filter.GraphDistanceFilter, prefuse.action.filter.FisheyeTreeFilter,
GroupAction | abstract public class GroupAction extends Action (Code) | | An Action that can be parameterized to process a particular group of items.
author: jeffrey heer |
Constructor Summary | |
public | GroupAction() Create a new GroupAction that processes all groups. | public | GroupAction(Visualization vis) Create a new GroupAction that processes all groups. | public | GroupAction(Visualization vis, long duration) Create a new GroupAction that processes all groups. | public | GroupAction(Visualization vis, long duration, long stepTime) Create a new GroupAction that processes all groups. | public | GroupAction(String group) Create a new GroupAction that processes the specified group. | public | GroupAction(String group, long duration) Create a new GroupAction that processes the specified group. | public | GroupAction(String group, long duration, long stepTime) Create a new GroupAction that processes the specified group. | public | GroupAction(Visualization vis, String group) Create a new GroupAction that processes the specified group. | public | GroupAction(Visualization vis, String group, long duration) Create a new GroupAction that processes the specified group. | public | GroupAction(Visualization vis, String group, long duration, long stepTime) Create a new GroupAction that processes the specified group. |
Method Summary | |
public String | getGroup() Get the name of the group to be processed by this Action. | abstract public void | run(double frac) | public void | setGroup(String group) Sets the name of the group to be processed by this Action. |
m_group | protected String m_group(Code) | | A reference to the group to be processed by this Action
|
GroupAction | public GroupAction(Visualization vis, long duration, long stepTime)(Code) | | Create a new GroupAction that processes all groups.
Parameters: vis - the prefuse.Visualization to process Parameters: duration - the duration of this Action Parameters: stepTime - the time to wait between invocations of this Action See Also: prefuse.Visualization.ALL_ITEMS |
GroupAction | public GroupAction(String group)(Code) | | Create a new GroupAction that processes the specified group.
Parameters: group - the name of the group to process |
GroupAction | public GroupAction(String group, long duration)(Code) | | Create a new GroupAction that processes the specified group.
Parameters: group - the name of the group to process Parameters: duration - the duration of this Action |
GroupAction | public GroupAction(String group, long duration, long stepTime)(Code) | | Create a new GroupAction that processes the specified group.
Parameters: group - the name of the group to process Parameters: duration - the duration of this Action Parameters: stepTime - the time to wait between invocations of this Action |
GroupAction | public GroupAction(Visualization vis, String group)(Code) | | Create a new GroupAction that processes the specified group.
Parameters: vis - the prefuse.Visualization to process Parameters: group - the name of the group to process |
GroupAction | public GroupAction(Visualization vis, String group, long duration)(Code) | | Create a new GroupAction that processes the specified group.
Parameters: vis - the prefuse.Visualization to process Parameters: group - the name of the group to process Parameters: duration - the duration of this Action |
GroupAction | public GroupAction(Visualization vis, String group, long duration, long stepTime)(Code) | | Create a new GroupAction that processes the specified group.
Parameters: vis - the prefuse.Visualization to process Parameters: group - the name of the group to process Parameters: duration - the duration of this Action Parameters: stepTime - the time to wait between invocations of this Action |
getGroup | public String getGroup()(Code) | | Get the name of the group to be processed by this Action.
the name of the group to process |
setGroup | public void setGroup(String group)(Code) | | Sets the name of the group to be processed by this Action.
Parameters: group - the name of the group to process |
|
|