1 19 24 package org.openide.explorer.propertysheet; 25 26 import org.openide.nodes.Node.*; 27 28 import java.awt.Component ; 29 import java.awt.event.ActionListener ; 30 31 import javax.swing.event.ChangeListener ; 32 33 34 46 interface PropertyDisplayer { 47 49 public static final int UPDATE_ON_CONFIRMATION = 0; 50 51 53 public static final int UPDATE_ON_FOCUS_LOST = 1; 54 55 57 public static final int UPDATE_ON_EXPLICIT_REQUEST = 2; 58 59 public Property getProperty(); 60 61 public void refresh(); 62 63 public Component getComponent(); 64 } 65 | Popular Tags |