evicebeans.7.131.2.source-code.DeviceApply 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 DeviceApply extends DeviceControl
{
/**
*
*/
private static final long serialVersionUID = 1L;
public DeviceApply()
{
setText("Apply");
}
@Override
protected void doOperation(DeviceSetup deviceSetup)
{
if (check())
deviceSetup.apply();
}
@Override
void setReadOnly(boolean readOnly)
{
setEnabled(!readOnly);
}
}