Search Results
OK to copy?
Examples 1 through 10 of
12 (0.0020 seconds)
Class:
org.springframework.web.servlet.mvc.multiaction.PropertiesMethodNameResolver
©,
Rating:
0% of 0,
C2
Class: org.springframework.transaction.interceptor.TransactionAttributeSourceEditor ©, Rating: 0% of 0, C2
Class: org.springframework.beans.propertyeditors.PropertiesEditor ©, Rating: 0% of 0, C2
Class: com.technoetic.xplanner.XPlannerProperties ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.XPlannerProperties ©, Rating: 0% of 0, C2
Class: org.springframework.transaction.interceptor.NameMatchTransactionAttributeSource ©, Rating: 0% of 0, C1
Class: org.springframework.web.servlet.mvc.WebContentInterceptor ©, Rating: 0% of 0, C1
Class: org.apache.jorphan.logging.LoggingManager ©, Rating: 0% of 0, C2
Class: org.apache.axis.client.Stub ©, Rating: 0% of 0, C1
Class: org.springframework.web.servlet.mvc.WizardFormControllerTests ©, Rating: 0% of 0, C3
69 return name;
70 }
71 for (Iterator it = this.mappings.keySet().iterator(); it.hasNext();) {
72 String registeredPath = (String) it.next();
73 if (PathMatcher.match(registeredPath, urlPath)) {
Class: org.springframework.transaction.interceptor.TransactionAttributeSourceEditor ©, Rating: 0% of 0, C2
66 // Now we have properties, process each one individually
67 TransactionAttributeEditor tae = new TransactionAttributeEditor();
68 for (Iterator iter = props.keySet().iterator(); iter.hasNext();) {
69 String name = (String) iter.next();
70 String value = props.getProperty(name);
Class: org.springframework.beans.propertyeditors.PropertiesEditor ©, Rating: 0% of 0, C2
84 */
85 private void dropComments(Properties props) {
86 Iterator keys = props.keySet().iterator();
87 while (keys.hasNext()) {
88 String key = (String) keys.next();
Class: com.technoetic.xplanner.XPlannerProperties ©, Rating: 0% of 0, C1
81
82 public Iterator getPropertyNames() {
83 return PropertyInitializer.properties.keySet().iterator();
84 }
85
Class: com.technoetic.xplanner.XPlannerProperties ©, Rating: 0% of 0, C2
44 if (in != null) {
45 customProperties.load(in);
46 for (Iterator iterator = customProperties.keySet().iterator(); iterator.hasNext();) {
47 String key = (String)iterator.next();
48 properties.put(key, customProperties.get(key));
Class: org.springframework.transaction.interceptor.NameMatchTransactionAttributeSource ©, Rating: 0% of 0, C1
081 public void setProperties(Properties transactionAttributes) {
082 TransactionAttributeEditor tae = new TransactionAttributeEditor();
083 for (Iterator it = transactionAttributes.keySet().iterator(); it.hasNext(); ) {
084 String methodName = (String) it.next();
085 String value = transactionAttributes.getProperty(methodName);
Class: org.springframework.web.servlet.mvc.WebContentInterceptor ©, Rating: 0% of 0, C1
105 public void setCacheMappings(Properties cacheMappings) {
106 this.cacheMappings.clear();
107 for (Iterator it = cacheMappings.keySet().iterator(); it.hasNext();) {
108 String path = (String) it.next();
109 this.cacheMappings.put(path, Integer.valueOf(cacheMappings.getProperty(path)));
Class: org.apache.jorphan.logging.LoggingManager ©, Rating: 0% of 0, C2
232 private static void setLoggingLevels(Properties appProperties)
233 {
234 Iterator props = appProperties.keySet().iterator();
235 while (props.hasNext())
236 {
Class: org.apache.axis.client.Stub ©, Rating: 0% of 0, C1
230 */
231 public Iterator _getPropertyNames() {
232 return cachedProperties.keySet().iterator();
233 } // _getPropertyNames
234
Class: org.springframework.web.servlet.mvc.WizardFormControllerTests ©, Rating: 0% of 0, C3
321 request.addParameter("pageAttr", "2");
322 if (params != null) {
323 for (Iterator it = params.keySet().iterator(); it.hasNext();) {
324 String param = (String) it.next();
325 request.addParameter(param, params.getProperty(param));