layer IBase1;

import x.y.z.*;
import java.io.Serializable;

interface MyInt extends FooInterface { 
    int Silent = 0;
    void foo() throws AFit;
    SomeType bar( int x );
}
   
