KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > openccm > descriptor > softpkg > ccm > SoftpkgchildDeployerContext


1 /*
2  * Created on 25 févr. 2004
3  *
4  * To change the template for this generated file go to
5  * Window>Preferences>Java>Code Generation>Code and Comments
6  */

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 briclet
15  *
16  * To change the template for this generated type comment go to
17  * Window>Preferences>Java>Code Generation>Code and Comments
18  */

19 public abstract class SoftpkgchildDeployerContext extends ChildDeployerContext {
20
21    private SoftpkgDeployerContext rootContext;
22        
23     
24     /**
25      * @return
26      */

27     public ZipEntryRetriever getZipEntryRetriever() {
28         return rootContext.getZipEntryRetriever();
29     }
30
31     
32
33     /**
34      * @return
35      */

36     public SoftpkgDeployerContext getRootContext() {
37         return rootContext;
38     }
39
40     /**
41      * @param context
42      */

43     public void connectRootContext(SoftpkgDeployerContext context) {
44         rootContext = context;
45     }
46
47 }
48
Popular Tags