KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > SOFAnode > TR > Connector > CNTR2InOut


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

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

14 public interface CNTR2InOut {
15   public void storeBundle (Bundle bundle) throws TRException;
16
17   public Bundle getBundle (ComponentInfo[] descs, ComponentInfo[] comps, boolean inferiors) throws TRException;
18
19 // public Bundle getMetaBundle (ComponentInfo[] descs) throws TRException;
20

21   public boolean contains (ComponentInfo descrs);
22
23   public Bundle list ();
24 }
25
Popular Tags