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

/openjdk7/jdk/src/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 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 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 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...]
H A DGetBooleanSecurityPropertyAction.java48 private String theProp; field in class:GetBooleanSecurityPropertyAction
54 * @param theProp the name of the security property
56 public GetBooleanSecurityPropertyAction(String theProp) { argument
57 this.theProp = theProp;
69 String value = Security.getProperty(theProp);
/openjdk7/corba/src/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 63 milliseconds