1 19 20 package org.netbeans.core.multiview; 21 22 import java.util.TooManyListenersException ; 23 import javax.swing.Action ; 24 import javax.swing.JComponent ; 25 import javax.swing.JToolBar ; 26 import org.openide.util.Lookup; 27 import org.openide.windows.TopComponent; 28 29 30 31 34 public interface MultiViewElementCallbackDelegate { 35 36 public void requestActive(); 37 38 public void requestVisible(); 39 40 public Action [] createDefaultActions(); 41 42 public void updateTitle(String title); 43 44 public boolean isSelectedElement(); 45 46 public TopComponent getTopComponent(); 47 48 } 49 50 51 | Popular Tags |