00001 package de.fub.bytecode.generic;
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 public class LDIV extends ArithmeticInstruction implements ExceptionThrower {
00012 public LDIV() {
00013 super(de.fub.bytecode.Constants.LDIV);
00014 }
00015
00016
00017
00018
00019
00020
00021
00022
00023 public void accept(Visitor v) {
00024 v.visitExceptionThrower(this);
00025 v.visitTypedInstruction(this);
00026 v.visitStackProducer(this);
00027 v.visitStackConsumer(this);
00028 v.visitArithmeticInstruction(this);
00029 v.visitLDIV(this);
00030 }
00031 public Class[] getExceptions() {
00032 return new Class[] { de.fub.bytecode.ExceptionConstants.ARITHMETIC_EXCEPTION };
00033 }
00034 }