1 package net.suberic.util.gui.propedit;2 3 /**4 * A PropertyEditorListener than can be configured from a property.5 */6 public interface ConfigurablePropertyEditorListener extends PropertyEditorListener {7 8 public abstract void configureListener(String key, String property, String propertyBase, String editorTemplate, PropertyEditorManager manager);9 10 }11