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

/libcore/ojluni/src/main/java/sun/security/action/
H A DGetBooleanAction.java51 private String theProp; field in class:GetBooleanAction
57 * @param theProp the name of the system property.
59 public GetBooleanAction(String theProp) { argument
60 this.theProp = theProp;
70 return Boolean.getBoolean(theProp);
H A DGetIntegerAction.java68 private String theProp; field in class:GetIntegerAction
76 * @param theProp the name of the system property.
78 public GetIntegerAction(String theProp) { argument
79 this.theProp = theProp;
86 * @param theProp the name of the system property.
89 public GetIntegerAction(String theProp, int defaultVal) { argument
90 this.theProp = theProp;
108 Integer value = Integer.getInteger(theProp);
[all...]
H A DGetPropertyAction.java51 private String theProp; field in class:GetPropertyAction
58 * @param theProp the name of the system property.
60 public GetPropertyAction(String theProp) { argument
61 this.theProp = theProp;
68 * @param theProp the name of the system property.
71 public GetPropertyAction(String theProp, String defaultVal) { argument
72 this.theProp = theProp;
84 String value = System.getProperty(theProp);
[all...]

Completed in 145 milliseconds