1 /*2 * Created on 25 févr. 20043 *4 * To change the template for this generated file go to5 * Window>Preferences>Java>Code Generation>Code and Comments6 */7 package org.objectweb.openccm.descriptor.softpkg.ccm;8 9 import org.objectweb.openccm.descriptor.ZipEntryRetriever;10 import org.objectweb.openccm.descriptor.componentassembly.ccm.deployer.base.ChildDeployerContext;11 12 13 /**14 * @author briclet15 *16 * To change the template for this generated type comment go to17 * Window>Preferences>Java>Code Generation>Code and Comments18 */19 public abstract class SoftpkgchildDeployerContext extends ChildDeployerContext {20 21 private SoftpkgDeployerContext rootContext;22 23 24 /**25 * @return26 */27 public ZipEntryRetriever getZipEntryRetriever() {28 return rootContext.getZipEntryRetriever();29 }30 31 32 33 /**34 * @return35 */36 public SoftpkgDeployerContext getRootContext() {37 return rootContext;38 }39 40 /**41 * @param context42 */43 public void connectRootContext(SoftpkgDeployerContext context) {44 rootContext = context;45 }46 47 }48