Home
last modified time | relevance | path

Searched refs:theProp (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/action/
DGetPropertyAction.java51 private String theProp; field in GetPropertyAction
60 public GetPropertyAction(String theProp) { in GetPropertyAction() argument
61 this.theProp = theProp; in GetPropertyAction()
71 public GetPropertyAction(String theProp, String defaultVal) { in GetPropertyAction() argument
72 this.theProp = theProp; in GetPropertyAction()
84 String value = System.getProperty(theProp); in run()
DGetIntegerAction.java68 private String theProp; field in GetIntegerAction
78 public GetIntegerAction(String theProp) { in GetIntegerAction() argument
79 this.theProp = theProp; in GetIntegerAction()
89 public GetIntegerAction(String theProp, int defaultVal) { in GetIntegerAction() argument
90 this.theProp = theProp; in GetIntegerAction()
108 Integer value = Integer.getInteger(theProp); in run()
DGetBooleanAction.java51 private String theProp; field in GetBooleanAction
59 public GetBooleanAction(String theProp) { in GetBooleanAction() argument
60 this.theProp = theProp; in GetBooleanAction()
70 return Boolean.getBoolean(theProp); in run()