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

/openjdk10/jdk/src/java.base/share/classes/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 DGetLongAction.java67 private String theProp; field in class:GetLongAction
75 * @param theProp the name of the system property.
77 public GetLongAction(String theProp) { argument
78 this.theProp = theProp;
85 * @param theProp the name of the system property.
88 public GetLongAction(String theProp, long defaultVal) { argument
89 this.theProp = theProp;
107 Long value = Long.getLong(theProp);
[all...]
H A DGetIntegerAction.java70 private String theProp; field in class:GetIntegerAction
78 * @param theProp the name of the system property.
80 public GetIntegerAction(String theProp) { argument
81 this.theProp = theProp;
88 * @param theProp the name of the system property.
91 public GetIntegerAction(String theProp, int defaultVal) { argument
92 this.theProp = theProp;
110 Integer value = Integer.getInteger(theProp);
128 privilegedGetProperty(String theProp) argument
150 privilegedGetProperty(String theProp, int defaultVal) argument
[all...]
H A DGetPropertyAction.java54 private String theProp; field in class:GetPropertyAction
61 * @param theProp the name of the system property.
63 public GetPropertyAction(String theProp) { argument
64 this.theProp = theProp;
71 * @param theProp the name of the system property.
74 public GetPropertyAction(String theProp, String defaultVal) { argument
75 this.theProp = theProp;
87 String value = System.getProperty(theProp);
103 privilegedGetProperty(String theProp) argument
125 privilegedGetProperty(String theProp, String defaultVal) argument
[all...]
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/orbutil/
H A DGetPropertyAction.java52 private String theProp; field in class:GetPropertyAction
59 * @param theProp the name of the system property.
61 public GetPropertyAction(String theProp) { argument
62 this.theProp = theProp;
69 * @param theProp the name of the system property.
72 public GetPropertyAction(String theProp, String defaultVal) { argument
73 this.theProp = theProp;
85 String value = System.getProperty(theProp);
[all...]

Completed in 35 milliseconds