2024-10-09 22:21:57 +03:00
|
|
|
package _VisualDVM.GlobalData.SapforProfileSetting;
|
2024-10-07 14:22:52 +03:00
|
|
|
import Common.CommonConstants;
|
2024-10-09 22:01:19 +03:00
|
|
|
import _VisualDVM.Current;
|
2024-10-07 00:58:29 +03:00
|
|
|
import Common.Database.Objects.iDBObject;
|
2024-10-13 22:08:13 +03:00
|
|
|
import _VisualDVM.Global;
|
2024-10-09 22:21:57 +03:00
|
|
|
import _VisualDVM.GlobalData.Settings.SettingName;
|
2023-09-17 22:13:42 +03:00
|
|
|
import com.sun.org.glassfish.gmbal.Description;
|
|
|
|
|
public class SapforProfileSetting extends iDBObject {
|
|
|
|
|
@Description("DEFAULT 'Undefined'")
|
|
|
|
|
public SettingName name = SettingName.Undefined;
|
|
|
|
|
@Description("DEFAULT ''")
|
|
|
|
|
public String value = "";
|
|
|
|
|
@Description("DEFAULT -1")
|
2024-10-07 14:22:52 +03:00
|
|
|
public int sapforprofile_id = CommonConstants.Nan;
|
2023-09-17 22:13:42 +03:00
|
|
|
@Override
|
|
|
|
|
public boolean isVisible() {
|
2024-10-13 22:08:13 +03:00
|
|
|
return Global.mainModule.matchCurrentID(Current.SapforProfile, sapforprofile_id);
|
2023-09-17 22:13:42 +03:00
|
|
|
}
|
|
|
|
|
}
|