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 CustomizerPackagingFactory implements ProjectCustomizer.CompositeCategoryProvider { 32 33 34 public CustomizerPackagingFactory() { 35 } 36 37 public ProjectCustomizer.Category createCategory(Lookup context) { 38 return ProjectCustomizer.Category.create( 39 CustomizerProviderImpl.CATEGORY_PACKAGING, 40 NbBundle.getMessage(CustomizerPackagingFactory.class, "LBL_ConfigPackaging"), 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 CustomizerPackaging(props, category); 48 } 49 50 51 } 52 | Popular Tags |