Uses of Interface
net.sourceforge.webcompmath.awt.Tieable

Packages that use Tieable
net.sourceforge.webcompmath.awt   
net.sourceforge.webcompmath.awt.beans   
net.sourceforge.webcompmath.draw   
net.sourceforge.webcompmath.draw.beans   
 

Uses of Tieable in net.sourceforge.webcompmath.awt
 

Classes in net.sourceforge.webcompmath.awt that implement Tieable
 class Animator
          An Animator can change a value continuously, without user intervention, by running a separate Thread.
 class VariableInput
          A VariableInput is an input box into which the user can type a real number value, which becomes the value of an associated Variable.
 class VariableJSlider
          A VariableJSlider is a slider (implemented as a JSlider) whose position represents the value of an associated variable.
 class VariableSlider
          A VariableSlider is a slider (implemented as a JScrollbar) whose position represents the value of an associated variable.
 

Methods in net.sourceforge.webcompmath.awt with parameters of type Tieable
 void Tie.add(Tieable item)
          Add item to the tie, and sync it with the items that are already in the Tie.
 void VariableSlider.sync(Tie tie, Tieable newest)
          Change the value and serial number of this object to match those of newest.
 void VariableJSlider.sync(Tie tie, Tieable newest)
          Change the value and serial number of this object to match those of newest.
 void VariableInput.sync(Tie tie, Tieable newest)
          Synchronize serial number and value with newest, unless this VariableInput is itself newest.
 void Tieable.sync(Tie tie, Tieable newest)
          This routine is called to tell this Tieable that the serial numbers of the Tieables that have been added to the Tie do not match.
 void Animator.sync(Tie tie, Tieable newest)
          Part of the Tieable interface.
 

Constructors in net.sourceforge.webcompmath.awt with parameters of type Tieable
Tie(Tieable item)
          Create a Tie initally containing only the object item.
Tie(Tieable item1, Tieable item2)
          Create a Tie initially containing item1 and item2.
 

Uses of Tieable in net.sourceforge.webcompmath.awt.beans
 

Classes in net.sourceforge.webcompmath.awt.beans that implement Tieable
 class WCMAnimatorBean
           
 class WCMVariableInputBean
          JavaBean for VariableInput.
 class WCMVariableJSliderBean
          This bean extends VariableJSlider by adding a convenience property.
 

Methods in net.sourceforge.webcompmath.awt.beans with parameters of type Tieable
 void WCMTieBean.setTieable1(Tieable t)
          Set method to add a tieable to a tie
 void WCMTieBean.setTieable2(Tieable t)
          Set method to add a tieable to a tie
 void WCMTieBean.setTieable3(Tieable t)
          Set method to add a tieable to a tie
 

Uses of Tieable in net.sourceforge.webcompmath.draw
 

Classes in net.sourceforge.webcompmath.draw that implement Tieable
 class CoordinateRect
          A CoordinateRect represents a rectagular region in the xy-plane, specified by values xmin,xmax,ymin,ymax.
 class LimitControlPanel
          A LimitControlPanel has four input boxes for specifying the xmin, xmax, ymin, and ymax of a CoodinateRect.
 

Methods in net.sourceforge.webcompmath.draw with parameters of type Tieable
 void LimitControlPanel.sync(Tie t, Tieable newest)
          Part of the Tieable interface, and not meant to be called directly.
 void CoordinateRect.sync(Tie tie, Tieable newest)
          Part of the Tieable interface.
 

Uses of Tieable in net.sourceforge.webcompmath.draw.beans
 

Classes in net.sourceforge.webcompmath.draw.beans that implement Tieable
 class WCMLimitControlPanelBean
          This class is intended for use with GUI builders.
 class WCMMouseVariableBean
          This class is a convenience class used when creating applications via a GUI builder.
 

Methods in net.sourceforge.webcompmath.draw.beans with parameters of type Tieable
 void WCMMouseVariableBean.sync(Tie tie, Tieable newest)
          Passed through to the MouseVar variable.