KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > ext > coffer > types > CofferProcedureInstance


1 package polyglot.ext.coffer.types;
2
3 import polyglot.types.*;
4 import java.util.*;
5
6 /** Coffer procedure instance. A wrapper of all the type information
7  * related to a procedure.
8  */

9 public interface CofferProcedureInstance extends ProcedureInstance
10 {
11     KeySet entryKeys();
12     KeySet returnKeys();
13     List throwConstraints();
14
15     CofferProcedureInstance entryKeys(KeySet entryKeys);
16     CofferProcedureInstance returnKeys(KeySet returnKeys);
17     CofferProcedureInstance throwConstraints(List throwConstraints);
18 }
19
Popular Tags