KickJava   Java API By Example, From Geeks To Geeks.

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


1 package polyglot.ext.coffer.types;
2
3 import polyglot.types.*;
4
5 public interface ThrowConstraint {
6     public KeySet keys();
7     public ThrowConstraint keys(KeySet keys);
8     public Type throwType();
9     public ThrowConstraint throwType(Type throwType);
10 }
11
Popular Tags