1 19 package org.openide.util.datatransfer; 20 21 import org.openide.util.HelpCtx; 22 import org.openide.util.NbBundle; 23 24 import java.io.IOException ; 25 26 27 31 public abstract class NewType extends Object implements HelpCtx.Provider { 32 37 public String getName() { 38 return NbBundle.getBundle(NewType.class).getString("Create"); 39 } 40 41 44 public HelpCtx getHelpCtx() { 45 return org.openide.util.HelpCtx.DEFAULT_HELP; 46 } 47 48 51 public abstract void create() throws IOException ; 52 53 68 } 69 | Popular Tags |