no message
This commit is contained in:
@@ -14,19 +14,19 @@ public class DVMSettingsForm extends DataSetControlForm<DVMSettings> {
|
||||
super(dataSource_in, mountPanel_in);
|
||||
}
|
||||
@Override
|
||||
public Current CurrentName() {
|
||||
protected Current CurrentName() {
|
||||
return Current.DVMSettings;
|
||||
}
|
||||
@Override
|
||||
public String getSingleDescription() {
|
||||
protected String getSingleDescription() {
|
||||
return "параметры тестирования";
|
||||
}
|
||||
@Override
|
||||
public String getPluralDescription() {
|
||||
protected String getPluralDescription() {
|
||||
return "параметры тестирования";
|
||||
}
|
||||
@Override
|
||||
public boolean hasCheckBox() {
|
||||
protected boolean hasCheckBox() {
|
||||
return true;
|
||||
}
|
||||
@Override
|
||||
@@ -77,11 +77,11 @@ public class DVMSettingsForm extends DataSetControlForm<DVMSettings> {
|
||||
PassCode.DeleteDVMSettings);
|
||||
}
|
||||
@Override
|
||||
public DBObjectDialog getDialog() {
|
||||
protected DBObjectDialog getDialog() {
|
||||
return new DVMSettingsDialog();
|
||||
}
|
||||
@Override
|
||||
public boolean ShowEditObjectDialog(DVMSettings object) {
|
||||
return (Global.mainModule.getAccount().CheckAccessRights(object.sender_address, null)) ? super.ShowEditObjectDialog(object) : ViewObject(object);
|
||||
protected boolean isObjectEditable(DVMSettings object) {
|
||||
return Global.mainModule.getAccount().CheckAccessRights(object.sender_address, null);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user