1 19 20 package org.netbeans.core.spi.multiview; 21 22 import java.awt.Image ; 23 import org.openide.util.HelpCtx; 24 25 34 public interface MultiViewDescription { 35 36 43 public int getPersistenceType(); 44 45 49 public String getDisplayName(); 50 51 56 public Image getIcon (); 57 58 60 public HelpCtx getHelpCtx (); 61 62 69 public String preferredID(); 70 71 75 public MultiViewElement createElement (); 76 77 } | Popular Tags |