Added documentation to Device.cloneState()
This commit is contained in:
parent
4aa4d68738
commit
f565a3be6e
1 changed files with 6 additions and 0 deletions
|
@ -13,5 +13,11 @@ public abstract class OutputDevice extends Device {
|
|||
super(kind, FlowType.OUTPUT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a State<?> object initialized to point at this device and with values copied from
|
||||
* this device's state
|
||||
*
|
||||
* @return a new State<?> object
|
||||
*/
|
||||
public abstract State<? extends OutputDevice> cloneState();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue