package de.dhbwstuttgart.syntaxtree.statement; public abstract class BinaryExpr extends Expr { public BinaryExpr(int offset,int variableLength) { super(null,variableLength); } // abstract public void if_codegen(ClassFile classfile, Code_attribute code, boolean sw) throws jvmCode_Exception; // abstract public void not_codegen(ClassFile classfile, Code_attribute code) throws jvmCode_Exception; }