Save This Page
Home » spring-framework-2.5.5-with-dependencies » org.springframework » core » io » [javadoc | source]
org.springframework.core.io
public class: AbstractPathResolvingPropertyEditor [javadoc | source]
java.lang.Object
   java.beans.PropertyEditorSupport
      org.springframework.core.io.AbstractPathResolvingPropertyEditor

All Implemented Interfaces:
    PropertyEditor

Abstract base class for PropertyEditors that need to resolve placeholders in paths.

A path may contain ${...} placeholders, to be resolved as system properties: e.g. ${user.dir}.

Field Summary
public static final  String PLACEHOLDER_PREFIX     
public static final  String PLACEHOLDER_SUFFIX     
protected static final  Log logger     
Method from org.springframework.core.io.AbstractPathResolvingPropertyEditor Summary:
resolvePath
Methods from java.beans.PropertyEditorSupport:
addPropertyChangeListener,   firePropertyChange,   getAsText,   getCustomEditor,   getJavaInitializationString,   getSource,   getTags,   getValue,   isPaintable,   paintValue,   removePropertyChangeListener,   setAsText,   setSource,   setValue,   supportsCustomEditor
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.springframework.core.io.AbstractPathResolvingPropertyEditor Detail:
 protected String resolvePath(String path) 
    Resolve the given path, replacing ${...} placeholders with corresponding system property values if necessary.