Class CompLABSliders

java.lang.Object
   |
   +----java.awt.Component
           |
           +----java.awt.Container
                   |
                   +----java.awt.Panel
                           |
                           +----UpdatableComponentImpl
                                   |
                                   +----CompLABSliders

class CompLABSliders
extends UpdatableComponentImpl
implements SliderListener
This class produces an updatable component that contains a set of 3 LAB sliders.

See Also:
SliderListener, UpdatableComponentImpl

Variable Index

 o sliderA
 o sliderB
 o sliderL

Constructor Index

 o CompLABSliders(FrameLAB)
Constructs updatable component that contains 3 LAB slider controls.

Method Index

 o minimumSize()
Overrides the default minimumSize() method.
 o preferredSize()
Overrides the default preferredSize() method.
 o sliderAdjusted(int, float)
This method implements one of the SliderListener interface methods.
 o sliderAdjusted(int, int)
This method implements one of the SliderListener interface methods.
 o update()
Self-update method.

Variables

 o sliderL
 Slider sliderL
 o sliderA
 Slider sliderA
 o sliderB
 Slider sliderB

Constructors

 o CompLABSliders
 public CompLABSliders(FrameLAB parent)
Constructs updatable component that contains 3 LAB slider controls.

Parameters:
parent - parent frame reference

Methods

 o update
 public void update()
Self-update method. It is called when the component has to be updated.

Overrides:
update in class UpdatableComponentImpl
 o sliderAdjusted
 public void sliderAdjusted(int sliderID,
                            float value)
This method implements one of the SliderListener interface methods.

Parameters:
sliderID - indicates which slider control has been adjusted.
value - the new value of the slider control.
 o sliderAdjusted
 public void sliderAdjusted(int sliderID,
                            int value)
This method implements one of the SliderListener interface methods.

Parameters:
sliderID - indicates which slider control has been adjusted.
value - the new value of the slider control.
 o minimumSize
 public Dimension minimumSize()
Overrides the default minimumSize() method.

Returns:
new Dimension
Overrides:
minimumSize in class Container
 o preferredSize
 public Dimension preferredSize()
Overrides the default preferredSize() method.

Returns:
new Dimension
Overrides:
preferredSize in class Container