Blame view
circus/src/jcircus/util/SignatureExpression.java
1.27 KB
8d0dc533f
![]() |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
package jcircus.util; import jcircus.exceptions.runtime.NotYetImplementedException; import net.sourceforge.czt.base.ast.ListTerm; import net.sourceforge.czt.base.ast.Term; import net.sourceforge.czt.util.Visitor; import net.sourceforge.czt.z.ast.Expr; import net.sourceforge.czt.z.ast.Signature; /** * SignatureExpression.java * * @author Angela Freitas */ public class SignatureExpression implements Expr { Signature signature_; /** Creates a new instance of SignatureExpression */ public SignatureExpression(Signature signature) { this.signature_ = signature; } public Signature getSignature() { return this.signature_; } public Object getAnn(Class aClass) { throw new NotYetImplementedException(); } public ListTerm getAnns() { throw new NotYetImplementedException(); } public void addAnn(Object object) { throw new NotYetImplementedException(); } public Term create(Object[] object) { throw new NotYetImplementedException(); } public Object[] getChildren() { throw new NotYetImplementedException(); } public Object accept(Visitor v) { throw new NotYetImplementedException(); //return new Object (); } } |