FileDocCategorySizeDatePackage
SliderRegionControlAdapter.javaAPI DocJMF 2.1.1e1083Mon May 12 12:20:56 BST 2003com.sun.media.controls

SliderRegionControlAdapter

public class SliderRegionControlAdapter extends AtomicControlAdapter implements SliderRegionControl

Fields Summary
long
min
long
max
boolean
enable
Constructors Summary
public SliderRegionControlAdapter()

	super(null, true, null);
	enable = true;
    
public SliderRegionControlAdapter(Component c, boolean def, Control parent)

	super(c, def, parent);
    
Methods Summary
public longgetMaxValue()

	return max;
    
public longgetMinValue()

	return min;
    
public booleanisEnable()

	return enable;
    
public voidsetEnable(boolean f)

	enable = f;
    
public longsetMaxValue(long value)

	//	this.max = value / 1000000L;
	this.max = value;
	informListeners();
	return max;
    
public longsetMinValue(long value)

	// this.min = value / 1000000L;
	this.min = value;
	informListeners();
	return min;