Package gda.device
Interface ITweakable
- All Superinterfaces:
Findable
- All Known Subinterfaces:
ITweakableScannableMotor
- All Known Implementing Classes:
MotorPositionTweakControl,TweakableScannableMotor
an interface for a device whose position can be tweaked forward or reverse by the increment amount
-
Method Summary
Modifier and TypeMethodDescriptionvoidforward()increase value of this object by a fixed amount given ingetIncrement()doublereturns the increment amount of this objectvoidreverse()decrease value of this object by a fixed amount given ingetIncrement()voidsetIncrement(double value) set the increment amount for this object
-
Method Details
-
forward
increase value of this object by a fixed amount given ingetIncrement()- Throws:
MotorException
-
reverse
decrease value of this object by a fixed amount given ingetIncrement()- Throws:
MotorException
-
setIncrement
void setIncrement(double value) set the increment amount for this object -
getIncrement
double getIncrement()returns the increment amount of this object- Returns:
- the increment amount
-