HomeSort by relevance Sort by last modified time
    Searched refs:theProp (Results 1 - 3 of 3) sorted by null

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

Completed in 231 milliseconds