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 ();
}
}