List of usage examples for java.beans PropertyEditorSupport subclass-usage
From source file org.springmodules.cache.provider.ReflectionCacheModelEditor.java
/**
* <p>
* Creates a new instance of <code>{@link CachingModel}</code> by parsing a
* String of the form
* <code>propertyName1=propertyValue1;propertyName2=propertyValue2;propertyNameN=propertyValueN</code>.
* </p>
From source file com.alibaba.otter.manager.web.webx.valve.auth.action.ActionProtectedEditor.java
public class ActionProtectedEditor extends PropertyEditorSupport { private static final Logger logger = LoggerFactory.getLogger(ActionProtectedEditor.class); public void setAsText(String text) throws IllegalArgumentException { ActionProtected urlProtected = new ActionProtectedImpl(convertTextToPatterns(text));
From source file ar.com.zauber.commons.web.proxy.URLRequestMapperEditor.java
/**
* {@link PropertyEditor} for {@link URLRequestMapper}.
*
* Creates a {@link ChainedURLRequestMapper} of {@link RegexURLRequestMapper}.
* @see ChainedURLRequestMapper#ChainedURLRequestMapper(Map).
*
From source file org.zkoss.spring.core.io.support.ResourceArrayPropertyEditor.java
/**
* Editor for {@link org.springframework.core.io.Resource} arrays, to
* automatically convert <code>String</code> location patterns
* (e.g. <code>"file:C:/my*.txt"</code> or <code>"classpath*:myfile.txt"</code>)
* to <code>Resource</code> array properties. Can also translate a collection
* or array of location patterns into a merged Resource array.
From source file org.jasig.portlet.ClassifiedsPortlet.domain.CategoryEditor.java
public class CategoryEditor extends PropertyEditorSupport { private static Log log = LogFactory.getLog(CategoryEditor.class); private CategoryService categoryService;
From source file org.openmrs.module.radiology.web.controller.propertyeditor.RadiologyDepartmentPropertyEditor.java
public class RadiologyDepartmentPropertyEditor extends PropertyEditorSupport { private Log log = LogFactory.getLog(this.getClass()); public RadiologyDepartmentPropertyEditor() { }
From source file org.openmrs.module.radiology.web.controller.propertyeditor.RadiologyTemplatePropertyEditor.java
public class RadiologyTemplatePropertyEditor extends PropertyEditorSupport { private Log log = LogFactory.getLog(this.getClass()); public RadiologyTemplatePropertyEditor() { }
From source file org.openmrs.module.laboratory.web.controller.propertyeditor.LaboratoryLabPropertyEditor.java
public class LaboratoryLabPropertyEditor extends PropertyEditorSupport { private Log log = LogFactory.getLog(this.getClass()); public LaboratoryLabPropertyEditor() { }
From source file jp.co.ctc_g.jse.core.util.web.beans.DateEditor.java
/**
* <p>
* ??????
* ????????<br/>
* ???????<br/>
* <ul>
From source file org.acegisecurity.intercept.web.FilterInvocationDefinitionSourceEditor.java
/**
* Property editor to assist with the setup of a {@link FilterInvocationDefinitionSource}.<p>The class creates and
* populates a {@link RegExpBasedFilterInvocationDefinitionMap} or {@link PathBasedFilterInvocationDefinitionMap}
* (depending on the type of patterns presented).</p>
* <p>By default the class treats presented patterns as regular expressions. If the keyword
* <code>PATTERN_TYPE_APACHE_ANT</code> is present (case sensitive), patterns will be treated as Apache Ant paths