no message
This commit is contained in:
@@ -1,19 +1,19 @@
|
||||
package GlobalData.EnvironmentValue;
|
||||
import Common_old.Constants;
|
||||
import Common.CommonConstants;
|
||||
import Common.Utils.CommonUtils;
|
||||
import Common_old.Current;
|
||||
import Common.Database.Objects.iDBObject;
|
||||
import Common_old.Utils.Utils;
|
||||
public class EnvironmentValue extends iDBObject {
|
||||
public String name = "";
|
||||
public String value = "";
|
||||
public int machine_id = Constants.Nan; //для удаления машин
|
||||
public int run_configuration_id = Constants.Nan;
|
||||
public int machine_id = CommonConstants.Nan; //для удаления машин
|
||||
public int run_configuration_id = CommonConstants.Nan;
|
||||
@Override
|
||||
public boolean isVisible() {
|
||||
return Current.HasRunConfiguration() && (run_configuration_id == Current.getRunConfiguration().id);
|
||||
}
|
||||
@Override
|
||||
public String toString() {
|
||||
return name + "=" + Utils.DQuotes(value);
|
||||
return name + "=" + CommonUtils.DQuotes(value);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user