Searched refs:theProp (Results 1 – 3 of 3) sorted by relevance
51 private String theProp; field in GetPropertyAction60 public GetPropertyAction(String theProp) { in GetPropertyAction() argument61 this.theProp = theProp; in GetPropertyAction()71 public GetPropertyAction(String theProp, String defaultVal) { in GetPropertyAction() argument72 this.theProp = theProp; in GetPropertyAction()84 String value = System.getProperty(theProp); in run()
68 private String theProp; field in GetIntegerAction78 public GetIntegerAction(String theProp) { in GetIntegerAction() argument79 this.theProp = theProp; in GetIntegerAction()89 public GetIntegerAction(String theProp, int defaultVal) { in GetIntegerAction() argument90 this.theProp = theProp; in GetIntegerAction()108 Integer value = Integer.getInteger(theProp); in run()
51 private String theProp; field in GetBooleanAction59 public GetBooleanAction(String theProp) { in GetBooleanAction() argument60 this.theProp = theProp; in GetBooleanAction()70 return Boolean.getBoolean(theProp); in run()