evicebeans.7.131.2.source-code.DeviceCancel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devicebeans Show documentation
Show all versions of devicebeans Show documentation
MDSplus device beans for jdevice dialogs
public class DeviceCancel extends DeviceControl
{
/**
*
*/
private static final long serialVersionUID = 1L;
public DeviceCancel()
{
setText("Cancel");
}
@Override
protected void doOperation(DeviceSetup deviceSetup)
{
deviceSetup.cancel();
}
}