예제 #1
0
 @Override
 protected String getValue(Shell shell) {
   final String property = shell.getEnvironmentProperty(DEBUG);
   return property == null || property.trim().length() == 0
       ? Boolean.FALSE.toString()
       : property;
 }
예제 #2
0
 @Override
 protected String getValue(Shell shell) {
   final String property = shell.getEnvironmentProperty(BORDER);
   return property == null || property.trim().length() == 0 ? Border.PLAIN.name() : property;
 }