ConForM.CoopnTools.JavaProto.MiniJava
Class TryInstruction

java.lang.Object
  |
  +--ConForM.CoopnTools.JavaProto.MiniJava.JavaNode
        |
        +--ConForM.CoopnTools.JavaProto.MiniJava.Instruction
              |
              +--ConForM.CoopnTools.JavaProto.MiniJava.TryInstruction

public class TryInstruction
extends Instruction


Constructor Summary
TryInstruction(Instruction body, CatchList list)
           
 
Method Summary
 JavaNode accept(JavaNodeVisitor v)
           
 java.util.Iterator children()
           
 Instruction getBody()
           
 CatchList getList()
           
 boolean hasChildren()
           
 void setBody(Instruction body)
           
 void setList(CatchList list)
           
 
Methods inherited from class ConForM.CoopnTools.JavaProto.MiniJava.JavaNode
acceptChildren, makeIterator, makeIterator
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TryInstruction

public TryInstruction(Instruction body,
                      CatchList list)
Method Detail

accept

public JavaNode accept(JavaNodeVisitor v)
Overrides:
accept in class Instruction

setBody

public void setBody(Instruction body)

setList

public void setList(CatchList list)

getBody

public Instruction getBody()

getList

public CatchList getList()

hasChildren

public boolean hasChildren()
Overrides:
hasChildren in class JavaNode

children

public java.util.Iterator children()
Overrides:
children in class JavaNode