Search Results
OK to copy?
Examples 1 through 10 of
26 (0.0020 seconds)
Class:
org.springframework.context.support.ResourceMapFactoryBean
©,
Rating:
0% of 0,
C1
Class: com.technoetic.xplanner.actions.XPlannerInitializationPlugin ©, Rating: 0% of 0, C2
Class: org.apache.catalina.startup.CatalinaProperties ©, Rating: 0% of 0, C3
Class: org.springframework.beans.factory.config.PropertyOverrideConfigurer ©, Rating: 100% of 2, C2
Class: org.springframework.beans.factory.config.PropertiesFactoryBean ©, Rating: 0% of 0, C2
Class: org.springframework.orm.jdo.LocalPersistenceManagerFactoryBean ©, Rating: 0% of 0, C2
Class: org.springframework.web.servlet.handler.SimpleMappingExceptionResolver ©, Rating: 0% of 0, C3
Class: org.springframework.web.servlet.view.jasperreports.JasperReportsMultiFormatView ©, Rating: 0% of 0, C1
Class: org.springframework.beans.factory.config.PropertyResourceConfigurer ©, Rating: 0% of 0, C1
Class: org.springframework.beans.factory.config.PropertyResourceConfigurer ©, Rating: 0% of 0, C2
70 Map resourceMap = new HashMap();
71 Properties props = mergeProperties();
72 for (Enumeration en = props.propertyNames(); en.hasMoreElements();) {
73 String key = (String) en.nextElement();
74 String location = props.getProperty(key);
Class: com.technoetic.xplanner.actions.XPlannerInitializationPlugin ©, Rating: 0% of 0, C2
52 schedulerFactory.initialize(schedulerProperties);
53 Scheduler jobScheduler = schedulerFactory.getScheduler();
54 Enumeration propertyNames = schedulerProperties.propertyNames();
55 while (propertyNames.hasMoreElements()) {
56 String name = (String)propertyNames.nextElement();
Class: org.apache.catalina.startup.CatalinaProperties ©, Rating: 0% of 0, C3
128
129 // Register the properties as system properties
130 Enumeration enumeration = properties.propertyNames();
131 while (enumeration.hasMoreElements()) {
132 String name = (String) enumeration.nextElement();
Class: org.springframework.beans.factory.config.PropertyOverrideConfigurer ©, Rating: 100% of 2, C2
082 protected void processProperties(ConfigurableListableBeanFactory beanFactory, Properties props)
083 throws BeansException {
084 for (Enumeration en = props.propertyNames(); en.hasMoreElements();) {
085 String key = (String) en.nextElement();
086 try {
Class: org.springframework.beans.factory.config.PropertiesFactoryBean ©, Rating: 0% of 0, C2
117 if (this.properties != null) {
118 // use propertyNames enumeration to also catch default properties
119 for (Enumeration en = this.properties.propertyNames(); en.hasMoreElements();) {
120 String key = (String) en.nextElement();
121 result.setProperty(key, this.properties.getProperty(key));
Class: org.springframework.orm.jdo.LocalPersistenceManagerFactoryBean ©, Rating: 0% of 0, C2
151 if (this.jdoProperties != null) {
152 // use propertyNames enumeration to also catch default properties
153 for (Enumeration en = this.jdoProperties.propertyNames(); en.hasMoreElements();) {
154 String key = (String) en.nextElement();
155 props.setProperty(key, this.jdoProperties.getProperty(key));
Class: org.springframework.web.servlet.handler.SimpleMappingExceptionResolver ©, Rating: 0% of 0, C3
155 if (this.exceptionMappings != null) {
156 int deepest = Integer.MAX_VALUE;
157 for (Enumeration names = this.exceptionMappings.propertyNames(); names.hasMoreElements();) {
158 String exceptionMapping = (String) names.nextElement();
159 int depth = getDepth(exceptionMapping, ex);
Class: org.springframework.web.servlet.view.jasperreports.JasperReportsMultiFormatView ©, Rating: 0% of 0, C1
131 */
132 public void setFormatMappings(Properties mappingsWithClassNames) {
133 for (Enumeration discriminators = mappingsWithClassNames.propertyNames(); discriminators.hasMoreElements();) {
134 String discriminator = (String) discriminators.nextElement();
135 String className = mappingsWithClassNames.getProperty(discriminator);
Class: org.springframework.beans.factory.config.PropertyResourceConfigurer ©, Rating: 0% of 0, C1
194 */
195 protected void convertProperties(Properties props) {
196 Enumeration propertyNames = props.propertyNames();
197 while (propertyNames.hasMoreElements()) {
198 String propertyName = (String) propertyNames.nextElement();
Class: org.springframework.beans.factory.config.PropertyResourceConfigurer ©, Rating: 0% of 0, C2
142 if (this.properties != null) {
143 // use propertyNames enumeration to also catch default properties
144 for (Enumeration en = this.properties.propertyNames(); en.hasMoreElements();) {
145 String key = (String) en.nextElement();
146 mergedProps.setProperty(key, this.properties.getProperty(key));