1 19 20 package org.netbeans.spi.project.libraries; 21 22 import java.beans.Customizer ; 23 import org.openide.util.Lookup; 24 25 30 public interface LibraryTypeProvider extends Lookup.Provider { 31 32 38 public String getDisplayName (); 39 40 45 public String getLibraryType (); 46 47 52 public String [] getSupportedVolumeTypes (); 53 54 58 public LibraryImplementation createLibrary (); 59 60 61 68 public void libraryDeleted (LibraryImplementation libraryImpl); 69 70 71 79 public void libraryCreated (LibraryImplementation libraryImpl); 80 81 91 public Customizer getCustomizer (String volumeType); 92 93 } 94 | Popular Tags |