1 16 17 package org.springframework.beans; 18 19 import java.beans.PropertyEditor ; 20 21 35 public interface PropertyEditorRegistry { 36 37 43 void registerCustomEditor(Class requiredType, PropertyEditor propertyEditor); 44 45 65 void registerCustomEditor(Class requiredType, String propertyPath, PropertyEditor propertyEditor); 66 67 75 PropertyEditor findCustomEditor(Class requiredType, String propertyPath); 76 77 } 78 | Popular Tags |