1 19 package org.netbeans.modules.j2ee.websphere6.dd.loaders.appext; 20 21 22 23 import org.netbeans.modules.j2ee.websphere6.dd.beans.WSAppExt; 24 import org.netbeans.modules.j2ee.websphere6.dd.loaders.WSMultiViewDataObject; 25 import org.netbeans.modules.j2ee.websphere6.dd.loaders.ui.WSAppExtAttributesPanel; 26 import org.netbeans.modules.xml.multiview.ui.*; 27 28 32 public class PanelFactory implements org.netbeans.modules.xml.multiview.ui.InnerPanelFactory { 33 private WSMultiViewDataObject dObj; 34 ToolBarDesignEditor editor; 35 36 37 PanelFactory(ToolBarDesignEditor editor, WSMultiViewDataObject dObj) { 38 this.dObj=dObj; 39 this.editor=editor; 40 } 41 42 public SectionInnerPanel createInnerPanel(Object key) { 43 SectionView pv=(SectionView)editor.getContentView(); 44 SectionInnerPanel createdPanel=null; 45 if (key instanceof WSAppExt){ 46 createdPanel=new WSAppExtAttributesPanel(pv,dObj,(WSAppExt)key); 47 } 48 return createdPanel; 49 } 50 } 51 | Popular Tags |