промежуточный. перенос настроек в проект. есть баги. завтра доделываю, версия не вполне рабочая
This commit is contained in:
@@ -1,11 +1,10 @@
|
||||
package _VisualDVM.GlobalData.SapforProfileSetting;
|
||||
import Common.CommonConstants;
|
||||
import Common.Database.Objects.iDBObject;
|
||||
import _VisualDVM.GlobalData.Settings.SettingName;
|
||||
import com.sun.org.glassfish.gmbal.Description;
|
||||
public class SapforProfileSetting extends iDBObject {
|
||||
@Description("DEFAULT 'Undefined'")
|
||||
public SettingName name = SettingName.Undefined;
|
||||
public String name = "Undefined";
|
||||
@Description("DEFAULT ''")
|
||||
public String value = "";
|
||||
@Description("DEFAULT -1")
|
||||
|
||||
@@ -17,7 +17,7 @@ public class SapforProfileSettingsForm extends DataSetControlForm<SapforProfileS
|
||||
new ColumnInfo<SapforProfileSetting>("имя") {
|
||||
@Override
|
||||
public Object getFieldAt(SapforProfileSetting object) {
|
||||
return object.name.getDescription();
|
||||
return "?"; // object.name.getDescription();
|
||||
}
|
||||
},
|
||||
new ColumnInfo<SapforProfileSetting>("значение") {
|
||||
|
||||
Reference in New Issue
Block a user