1 26 27 package org.objectweb.openccm.descriptor.componentassembly.gui; 28 29 import org.objectweb.openccm.descriptor.componentassembly.beans.*; 30 import org.objectweb.openccm.descriptor.componentassembly.*; 31 32 39 public class ComponentinstantiationZipper 40 { 41 47 53 56 public void 57 zipCall( 58 ComponentinstantiationBean componentinstantiation 59 , org.objectweb.openccm.packaging.ZipFactory zip_factory 60 ) 61 { 62 ComponentpropertiesBean componentproperties 64 = (ComponentpropertiesBean) componentinstantiation.getComponentproperties(); 65 if (componentproperties != null) 67 { 68 ComponentpropertiesZipper sub_zipper 69 = (ComponentpropertiesZipper) componentproperties 70 .getExtensionManager() 71 .getExtensionByName("gui.Zipper") 72 .getInstance(); 73 74 sub_zipper.zipCall(componentproperties, zip_factory); 75 } 76 77 } 78 } 79 | Popular Tags |