Main Page   Packages   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members  

IFGT.java

00001 package de.fub.bytecode.generic;
00002 
00003 /** 
00004  * IFGT - Branch if int comparison with zero succeeds
00005  *
00006  * <PRE>Stack: ..., value -&gt; ...</PRE>
00007  *
00008  * @version $Id: IFGT.java,v 1.1.1.1 2002/01/24 03:44:03 pserver Exp $
00009  * @author  <A HREF="http://www.inf.fu-berlin.de/~dahm">M. Dahm</A>
00010  */
00011 public class IFGT extends IfInstruction {
00012   /**
00013    * Empty constructor needed for the Class.newInstance() statement in
00014    * Instruction.readInstruction(). Not to be used otherwise.
00015    */
00016   IFGT() {}  
00017   public IFGT(InstructionHandle target) {
00018     super(IFGT, target);
00019   }  
00020   /**
00021    * @return negation of instruction
00022    */
00023   public IfInstruction negate() {
00024     return new IFLE(target);
00025   }  
00026 }

Generated at Thu Feb 7 06:46:28 2002 for Bandera by doxygen1.2.10 written by Dimitri van Heesch, © 1997-2001