KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > SOFAnode > InOut > Connector > InOut2ClientLocalSkel


1 /**
2  * InOut2ClientLocalSkel.java is a part of the SOFA project.
3  * This file was created by pepan on 16.4.2003.
4  */

5 package SOFA.SOFAnode.InOut.Connector;
6
7 import SOFA.SOFAnode.InOut.Bundle;
8 import SOFA.SOFAnode.InOut.InOutException;
9
10 /**
11  * @author Petr Panuska
12  */

13 public class InOut2ClientLocalSkel implements CNInOut2Client {
14   private CNInOut2Client target;
15
16   public void obtain (String JavaDoc[] offers, String JavaDoc[] components, String JavaDoc sofaNode) throws InOutException {
17   }
18
19   public void distribute (String JavaDoc[] offers, String JavaDoc[] components, String JavaDoc[] sofaNodes) throws InOutException {
20   }
21
22   public void obtainOffers (String JavaDoc[] offers, String JavaDoc sofaNode) throws InOutException {
23   }
24
25   public void distributeOffers (String JavaDoc[] offers, String JavaDoc[] sofaNodes) throws InOutException {
26   }
27
28   public void obtainComponents (String JavaDoc[] components, String JavaDoc sofaNode) throws InOutException {
29   }
30
31   public void distributeComponents (String JavaDoc[] components, String JavaDoc[] sofaNodes) throws InOutException {
32   }
33
34   public Bundle list () {
35     return target.list();
36   }
37 }
38
Popular Tags