Graphics2D Actor API

Uses of Class
g2d.jlambda.Closure

Packages that use Closure
g2d.closure This package contains classes that utilize closures in order to describe the behaviour of dynamically created classes, and their instances. 
g2d.glyph This package contains the glyphish hierarchy, a glyphish instance is an interactive graphical object. 
g2d.swing This package contains some swing classes for building GUI's using the glyphish hierarchy. 
 

Uses of Closure in g2d.closure
 

Methods in g2d.closure with parameters of type Closure
 void ClosureAbstractAction.setActionClosure(Closure closure)
          Specifies the action closure value.
 void ClosureActionListener.setActionClosure(Closure closure)
          Sets the closure to be used to handle the given action event.
 void ClosureAction.setActionClosure(Closure closure)
          Specifies the action closure value.
 void ClosureWindowListener.setActionClosure(int type, Closure fun)
          Specifies the closure to be used to handle the given window event.
 void ClosureAction.setAddPropertyChangeListenerClosure(Closure closure)
          Specifies the closure to be applied when a property listener is added.
 void ClosureGlyph.setBoundsClosure(Closure fun)
          Specifies the egtBounds closure value.
 void ClosureComponentListener.setClosure(int type, Closure closure)
          Set closure for execution when listener receives certain event.
 void ClosureComparator.setCompareClosure(Closure closure)
          Sets the closure to be used to compare objects.
 void ClosureAction.setGetValueClosure(Closure closure)
          Specifies the getValue closure value.
 void ClosureGlyph.setInsideClosure(Closure fun)
          Specifies the inside closure value.
 void ClosureGlyph.setIntersectsClosure(Closure fun)
          Specifies the intersects closure value.
 void ClosureAction.setIsEnabledClosure(Closure closure)
          Specifies the isEnabled closure value.
 void ClosureItemListener.setItemStateChangedClosure(Closure closure)
          Set closure for execution when listener receives updates about selectable item.
 void ClosureMouseMotionListener.setMouseAction(int type, Closure fun)
          Specifies the closure to be used to handle the given mouse motion event.
 void ClosureMouseListener.setMouseAction(int type, Closure fun)
          Specifies the closure to be used to handle the given mouse event.
 void ClosureGlyph.setPaintClosure(Closure fun)
          Specifies the paint closure value.
 void ClosureAction.setPutEnabledClosure(Closure closure)
          Specifies the putEnabled closure value.
 void ClosureAction.setRemovePropertyChangeListenerClosure(Closure closure)
          Specifies the closure to be applied when a property listener is removed.
 void ClosureThread.setRunClosure(Closure closure)
          Sets the ClosureThread's run method.
 void ClosureAction.setSetEnabledClosure(Closure closure)
          Specifies the setEnabled closure value.
 void ClosureGlyph.setTransformClosure(Closure fun)
          Specifies the transform closure value.
 void ClosureZoomListener.setZoomChangedClosure(Closure zoomChangedClosure)
          Specifies the zoom changed closure value.
 

Constructors in g2d.closure with parameters of type Closure
ClosureAbstractAction(Closure closure)
          Constructs a ClosureAbstractAction object.
ClosureAction(Closure closure)
          Constructs a ClosureAction object.
ClosureActionListener(Closure closure)
          Specifies the closure to be used to handle the given action event.
ClosureComparator(Closure closure)
          Constructs a ClosureComparator object.
ClosureItemListener(Closure closure)
          Constructs a ClosureItemListener object.
ClosureThread(Closure closure)
          Constructs a ClosureThread object.
 

Uses of Closure in g2d.glyph
 

Methods in g2d.glyph with parameters of type Closure
 void Glyphish.setKeyAction(int type, Closure fun)
           
 void Glyphish.setMouseAction(int type, Closure fun)
           
 

Uses of Closure in g2d.swing
 

Methods in g2d.swing with parameters of type Closure
 void IOPSingleSelect.addAction(String[] labels, Object[] data, Closure closure)
           
 void IOPSingleSelect.addAction(String item, Closure action)
          Adds an associated action to an item in this dialog's list.
 void IOPMenuItem.setAction(Closure c)
          Set action associated with this menu item.
 void IOPView.setKeyAction(int type, Closure fun)
           
 void IOPComponent.setKeyAction(int type, Closure fun)
           
 void IOPView.setMouseAction(int type, Closure fun)
           
 void IOPComponent.setMouseAction(int type, Closure fun)
           
 

Constructors in g2d.swing with parameters of type Closure
IOPMenuItem(String s, Closure c)
          Construct new menu item with text to display (must be non-null) and the associated closure (can be null).
IOPMenuItem(String s, Closure c, char key)
          Construct new menu item with text to display (must be non-null) and the associated closure (can be null) and a given key as short cut.
 


Graphics2D Actor API