Search Results
OK to copy?
Examples 1 through 10 of
373 (0.0080 seconds)
Class:
com.technoetic.xplanner.security.config.WebResourceCollection
©,
Rating:
0% of 0,
C3
Class: org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator ©, Rating: 0% of 0, C2
Class: org.apache.batik.swing.svg.SVGFileFilter ©, Rating: 0% of 0, C2
Class: org.apache.axis.message.Text ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.actions.XPlannerInitializationPlugin ©, Rating: 0% of 0, C2
Class: org.apache.jmeter.gui.JMeterFileFilter ©, Rating: 0% of 0, C2
Class: org.springframework.ui.freemarker.SpringTemplateLoader ©, Rating: 0% of 0, C1
Class: org.springframework.web.servlet.tags.NestedPathTag ©, Rating: 0% of 0, C2
Class: org.springframework.aop.support.NameMatchMethodPointcut ©, Rating: 0% of 0, C2
Class: org.springframework.ui.velocity.SpringResourceLoader ©, Rating: 0% of 0, C2
42 String path = request.getServletPath() +
43 (request.getPathInfo() == null ? "" : request.getPathInfo());
44 return (urlPattern.equals("/") && (path.equals("/"))) ||
45 (urlPattern.length() > 2 && urlPattern.startsWith("*.") && path != null && path.endsWith(urlPattern.substring(2))) ||
46 (urlPattern.endsWith("*") && path != null && path.startsWith(urlPattern.substring(0, urlPattern.length() - 1))) ||
Class: org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator ©, Rating: 0% of 0, C2
71 */
72 protected boolean isMatch(String beanName, String mappedName) {
73 return (mappedName.endsWith("*") && beanName.startsWith(mappedName.substring(0, mappedName.length() - 1))) ||
74 (mappedName.startsWith("*") && beanName.endsWith(mappedName.substring(1, mappedName.length())));
75 }
Class: org.apache.batik.swing.svg.SVGFileFilter ©, Rating: 0% of 0, C2
75 } else {
76 fileName = f.getPath().toLowerCase();
77 if (fileName.endsWith(".svg") || fileName.endsWith(".svgz"))
78 accept = true;
79 }
Class: org.apache.axis.message.Text ©, Rating: 0% of 0, C1
84 public boolean isComment() {
85 String temp = textRep.getNodeValue().trim();
86 if(temp.startsWith("<!--") && temp.endsWith("-->"))
87 return true;
88 return false;
Class: com.technoetic.xplanner.actions.XPlannerInitializationPlugin ©, Rating: 0% of 0, C2
55 while (propertyNames.hasMoreElements()) {
56 String name = (String)propertyNames.nextElement();
57 if (name.endsWith(".job")) {
58 String value = (String)schedulerProperties.get(name);
59 String[] fields = value.split(";");
Class: org.apache.jmeter.gui.JMeterFileFilter ©, Rating: 0% of 0, C2
082 for (int i = 0; i < exts.length; i++)
083 {
084 if (filename.endsWith(exts[i]))
085 {
086 return true;
Class: org.springframework.ui.freemarker.SpringTemplateLoader ©, Rating: 0% of 0, C1
57 public SpringTemplateLoader(ResourceLoader resourceLoader, String templateLoaderPath) {
58 this.resourceLoader = resourceLoader;
59 if (!templateLoaderPath.endsWith("/")) {
60 templateLoaderPath += "/";
61 }
Class: org.springframework.web.servlet.tags.NestedPathTag ©, Rating: 0% of 0, C2
062 path = "";
063 }
064 if (path.length() > 0 && !path.endsWith(Errors.NESTED_PATH_SEPARATOR)) {
065 path += Errors.NESTED_PATH_SEPARATOR;
066 }
Class: org.springframework.aop.support.NameMatchMethodPointcut ©, Rating: 0% of 0, C2
92 */
93 protected boolean isMatch(String methodName, String mappedName) {
94 return (mappedName.endsWith("*") && methodName.startsWith(mappedName.substring(0, mappedName.length() - 1))) ||
95 (mappedName.startsWith("*") && methodName.endsWith(mappedName.substring(1, mappedName.length())));
96 }
Class: org.springframework.ui.velocity.SpringResourceLoader ©, Rating: 0% of 0, C2
077 "'resourceLoaderPath' application attribute must be present for SpringResourceLoader");
078 }
079 if (!this.resourceLoaderPath.endsWith("/")) {
080 this.resourceLoaderPath += "/";
081 }