Search Results
OK to copy?
Examples 1 through 10 of
356 (0.0040 seconds)
Class:
org.w3c.css.sac.helpers.ParserFactory
©,
Rating:
0% of 0,
C1
Class: org.springframework.core.JdkVersion ©, Rating: 0% of 0, C1
Class: org.apache.jorphan.timer.HRTimer ©, Rating: 0% of 0, C1
Class: org.apache.naming.TransactionRef ©, Rating: 0% of 0, C1
Class: org.apache.naming.ResourceEnvRef ©, Rating: 0% of 0, C1
Class: org.apache.axis.test.AxisTestBase ©, Rating: 0% of 0, C1
Class: org.springframework.core.io.AbstractPathResolvingPropertyEditor ©, Rating: 0% of 0, C2
Class: org.apache.naming.ResourceLinkRef ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.XPlannerProperties ©, Rating: 0% of 0, C2
Class: org.apache.naming.EjbRef ©, Rating: 0% of 0, C1
31 NullPointerException,
32 ClassCastException {
33 String className = System.getProperty("org.w3c.css.sac.parser");
34 if (className == null) {
35 throw new NullPointerException("No value for sac.parser property");
Class: org.springframework.core.JdkVersion ©, Rating: 0% of 0, C1
37
38 static {
39 javaVersion = System.getProperty("java.version");
40 // should look like "1.4.1_02"
41 if (javaVersion.indexOf("1.4.") != -1) {
Class: org.apache.jorphan.timer.HRTimer ©, Rating: 0% of 0, C1
45 catch (UnsatisfiedLinkError e)
46 {
47 System.out.println ("native lib '" + HRTIMER_LIB
48 + "' not found in 'java.library.path': "
49 + System.getProperty ("java.library.path"));
Class: org.apache.naming.TransactionRef ©, Rating: 0% of 0, C1
79 * reference refers.
80 */
81 public String getFactoryClassName() {
82 String factory = super.getFactoryClassName();
83 if (factory != null) {
Class: org.apache.naming.ResourceEnvRef ©, Rating: 0% of 0, C1
83 factory = System.getProperty(Context.OBJECT_FACTORIES);
84 if (factory != null) {
85 return null;
86 } else {
87 return DEFAULT_FACTORY;
Class: org.apache.axis.test.AxisTestBase ©, Rating: 0% of 0, C1
74 */
75 public static boolean isPropertyTrue(String propertyname) {
76 String setting = System.getProperty(propertyname);
77 return "true".equalsIgnoreCase(setting) ||
78 "yes".equalsIgnoreCase(setting);
Class: org.springframework.core.io.AbstractPathResolvingPropertyEditor ©, Rating: 0% of 0, C2
63 if (endIndex != -1) {
64 String placeholder = buf.substring(startIndex + PLACEHOLDER_PREFIX.length(), endIndex);
65 String propVal = System.getProperty(placeholder);
66 if (propVal != null) {
67 buf.replace(startIndex, endIndex + PLACEHOLDER_SUFFIX.length(), propVal);
Class: org.apache.naming.ResourceLinkRef ©, Rating: 0% of 0, C1
095 return factory;
096 } else {
097 factory = System.getProperty(Context.OBJECT_FACTORIES);
098 if (factory != null) {
099 return null;
Class: com.technoetic.xplanner.XPlannerProperties ©, Rating: 0% of 0, C2
40 Properties customProperties = new Properties();
41 try {
42 String customPropertyFileName = System.getProperty(OVERRIDES_KEY, OVERRIDES_DEFAULT);
43 InputStream in = XPlannerProperties.class.getClassLoader().getResourceAsStream(customPropertyFileName);
44 if (in != null) {
Class: org.apache.naming.EjbRef ©, Rating: 0% of 0, C1
122 return factory;
123 } else {
124 factory = System.getProperty(Context.OBJECT_FACTORIES);
125 if (factory != null) {
126 return null;