1 19 20 package org.netbeans.spi.debugger.ui; 21 22 import java.beans.PropertyChangeListener ; 23 24 25 33 public interface Controller { 34 35 36 public static final String PROP_VALID = "valid"; 38 39 44 public boolean ok (); 45 46 51 public boolean cancel (); 52 53 60 public boolean isValid (); 61 62 67 public abstract void addPropertyChangeListener (PropertyChangeListener l); 68 69 74 public abstract void removePropertyChangeListener (PropertyChangeListener l); 75 } 76 77 | Popular Tags |