KickJava   Java API By Example, From Geeks To Geeks.

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


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

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

15 public interface CNInOut2InOut {
16   Bundle pullBundle (ComponentInfo[] comps, ComponentInfo[] descs, boolean inferiors) throws InOutException;
17
18   void pushBundle (Bundle bundle) throws InOutException;
19 }
20
Popular Tags