net.nexttext.behaviour.standard
Class CustomAction

java.lang.Object
  extended by net.nexttext.behaviour.AbstractAction
      extended by net.nexttext.behaviour.standard.CustomAction
All Implemented Interfaces:
Action

public class CustomAction
extends AbstractAction

An action that calls back a function defined in the main Processing sketch.


Nested Class Summary
 
Nested classes/interfaces inherited from interface net.nexttext.behaviour.Action
Action.ActionResult
 
Constructor Summary
CustomAction(processing.core.PApplet p)
          Constructs a default CustomAction.
CustomAction(processing.core.PApplet p, java.lang.String meth)
           
 
Method Summary
 Action.ActionResult behave(TextObject to)
          Default behave method for single objects.
 
Methods inherited from class net.nexttext.behaviour.AbstractAction
behave, behave, complete, getDisplayName, getRequiredProperties, makeBehaviour, properties, setDisplayName
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CustomAction

public CustomAction(processing.core.PApplet p)
Constructs a default CustomAction.


CustomAction

public CustomAction(processing.core.PApplet p,
                    java.lang.String meth)
Method Detail

behave

public Action.ActionResult behave(TextObject to)
Description copied from class: AbstractAction
Default behave method for single objects.

This method does nothing; it should be overriden by subclasses if they wish to support actions on single objects.

Trying to call this method on an Action which doesn't override it will throw an UnsupportedActionException.

Specified by:
behave in interface Action
Overrides:
behave in class AbstractAction