Uses of Class
de.upb.hni.vmagic.statement.IfStatement.ElsifPart

Packages that use IfStatement.ElsifPart
de.upb.hni.vmagic.statement Contains sequential statement meta classes. 
 

Uses of IfStatement.ElsifPart in de.upb.hni.vmagic.statement
 

Methods in de.upb.hni.vmagic.statement that return IfStatement.ElsifPart
 IfStatement.ElsifPart IfStatement.createElsifPart(Expression condition)
          Creates a elsif part and adds it to this if statement.
 

Methods in de.upb.hni.vmagic.statement that return types with arguments of type IfStatement.ElsifPart
 java.util.List<IfStatement.ElsifPart> IfStatement.getElsifParts()
          Returns the elsif parts.
 

Methods in de.upb.hni.vmagic.statement with parameters of type IfStatement.ElsifPart
protected  void SequentialStatementVisitor.visitIfStatementElsifPart(IfStatement.ElsifPart part)
          Visits the elsif part of a if statement.