Search Results
OK to copy?
Examples 1 through 10 of
206 (0.0030 seconds)
Class:
com.technoetic.xplanner.wiki.SimpleWikiAdapter
©,
Rating:
0% of 0,
C1
Class: com.technoetic.xplanner.db.hsqldb.HsqlHelper ©, Rating: 0% of 0, C2
Class: com.technoetic.xplanner.db.hsqldb.HsqlHelper ©, Rating: 0% of 0, C2
Class: org.springframework.jndi.JndiTemplateEditorTests ©, Rating: 0% of 0, C1
Class: org.springframework.jndi.JndiTemplateEditorTests ©, Rating: 0% of 0, C1
Class: org.apache.catalina.util.ServerInfo ©, Rating: 0% of 0, C1
Class: org.springframework.web.servlet.mvc.multiaction.PropertiesMethodNameResolver ©, Rating: 0% of 0, C2
Class: org.springframework.context.support.ResourceMapFactoryBean ©, Rating: 0% of 0, C1
Class: org.springframework.transaction.interceptor.TransactionAttributeSourceEditor ©, Rating: 0% of 0, C2
Class: org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer ©, Rating: 0% of 0, C1
05 public class SimpleWikiAdapter implements ExternalWikiAdapter {
06 public String formatWikiWord(String wikiWord) {
07 String url = new XPlannerProperties().get().getProperty("twiki.scheme.wiki");
08 if (url != null) {
09 url = url.replaceAll("\\$1", wikiWord);
Class: com.technoetic.xplanner.db.hsqldb.HsqlHelper ©, Rating: 0% of 0, C2
19 }
20 }
21 server.start(
22 properties.getProperty("xplanner.hsqldb.server.database"),
23 properties.getProperty("xplanner.hsqldb.server.port", "9001"));
Class: com.technoetic.xplanner.db.hsqldb.HsqlHelper ©, Rating: 0% of 0, C2
19 }
20 }
21 server.start(
22 properties.getProperty("xplanner.hsqldb.server.database"),
23 properties.getProperty("xplanner.hsqldb.server.port", "9001"));
Class: org.springframework.jndi.JndiTemplateEditorTests ©, Rating: 0% of 0, C1
51 assertTrue(jt.getEnvironment().size() == 2);
52 assertTrue(jt.getEnvironment().getProperty("jndiInitialSomethingOrOther").equals("org.springframework.myjndi.CompleteRubbish"));
53 assertTrue(jt.getEnvironment().getProperty("foo").equals("bar"));
54 }
55
Class: org.springframework.jndi.JndiTemplateEditorTests ©, Rating: 0% of 0, C1
50 JndiTemplate jt = (JndiTemplate) je.getValue();
51 assertTrue(jt.getEnvironment().size() == 2);
52 assertTrue(jt.getEnvironment().getProperty("jndiInitialSomethingOrOther").equals("org.springframework.myjndi.CompleteRubbish"));
53 assertTrue(jt.getEnvironment().getProperty("foo").equals("bar"));
54 }
Class: org.apache.catalina.util.ServerInfo ©, Rating: 0% of 0, C1
50 props.load(is);
51 is.close();
52 serverInfo = props.getProperty("server.info");
53 } catch (Throwable t) {
54 ;
Class: org.springframework.web.servlet.mvc.multiaction.PropertiesMethodNameResolver ©, Rating: 0% of 0, C2
65
66 protected String getHandlerMethodNameForUrlPath(String urlPath) {
67 String name = this.mappings.getProperty(urlPath);
68 if (name != null) {
69 return name;
Class: org.springframework.context.support.ResourceMapFactoryBean ©, Rating: 0% of 0, C1
72 for (Enumeration en = props.propertyNames(); en.hasMoreElements();) {
73 String key = (String) en.nextElement();
74 String location = props.getProperty(key);
75 resourceMap.put(key, this.resourceLoader.getResource(this.resourceBasePath + location));
76 }
Class: org.springframework.transaction.interceptor.TransactionAttributeSourceEditor ©, Rating: 0% of 0, C2
68 for (Iterator iter = props.keySet().iterator(); iter.hasNext();) {
69 String name = (String) iter.next();
70 String value = props.getProperty(name);
71
72 // Convert value to a transaction attribute
Class: org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer ©, Rating: 0% of 0, C1
87 value = this.systemPrefs.get(placeholder, null);
88 if (value == null) {
89 value = props.getProperty(placeholder);
90 }
91 }