1 package net.suberic.pooka.gui.filter; 2 import net.suberic.util.gui.propedit.PropertyValueVetoException; 3 4 7 public abstract class FilterEditor extends javax.swing.JPanel { 8 9 protected net.suberic.util.gui.propedit.PropertyEditorManager manager; 10 11 protected String property; 12 13 17 public abstract void configureEditor(net.suberic.util.gui.propedit.PropertyEditorManager manager, String propertyName); 18 19 22 public abstract java.util.Properties getValue(); 23 24 27 public abstract void setValue() throws PropertyValueVetoException; 28 29 32 public abstract String getFilterClassValue(); 33 } 34 | Popular Tags |