1 19 20 package org.netbeans.modules.apisupport.project.ui.customizer; 21 22 import javax.swing.JComponent ; 23 import org.netbeans.spi.project.ui.support.ProjectCustomizer; 24 import org.openide.util.Lookup; 25 import org.openide.util.NbBundle; 26 27 31 public class CustomizerLibrariesFactory implements ProjectCustomizer.CompositeCategoryProvider { 32 33 34 public CustomizerLibrariesFactory() { 35 } 36 37 public ProjectCustomizer.Category createCategory(Lookup context) { 38 return ProjectCustomizer.Category.create( 39 CustomizerProviderImpl.CATEGORY_LIBRARIES, 40 NbBundle.getMessage(CustomizerLibrariesFactory.class, "LBL_ConfigLibraries"), 41 null); 42 } 43 44 public JComponent createComponent(ProjectCustomizer.Category category, Lookup context) { 45 SingleModuleProperties props = context.lookup(SingleModuleProperties.class); 46 assert props != null; 47 return new CustomizerLibraries(props); 48 } 49 50 51 } 52 | Popular Tags |