All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class simple.CommandIfElse

java.lang.Object
   |
   +----simple.Domain
           |
           +----simple.SyntaxDomain
                   |
                   +----simple.Command
                           |
                           +----simple.CommandIfElse

public class CommandIfElse
extends Command
Formal Semantics of Programming Languages SS 99 1. Exercise Class represents syntax domain IfElse-Command. C ::= if B then K1 else K2

Version:
1.0 (JDK 1.1.7)
Author:
Jürgen Hartl, 9756179 / 881

Variable Index

 o bexp
 o blockElse
 o blockThen

Constructor Index

 o CommandIfElse(BooleanExpr, Block, Block)

Method Index

 o execute(Environment, Store)
 o intendPrint(PrintStream, String)
 o toString()

Variables

 o bexp
 BooleanExpr bexp
 o blockThen
 Block blockThen
 o blockElse
 Block blockElse

Constructors

 o CommandIfElse
 public CommandIfElse(BooleanExpr bexp,
                      Block blockThen,
                      Block blockElse)

Methods

 o toString
 public String toString()
Overrides:
toString in class Object
 o intendPrint
 public void intendPrint(PrintStream out,
                         String intend)
Overrides:
intendPrint in class SyntaxDomain
 o execute
 Poststore execute(Environment e,
                   Store s)
Overrides:
execute in class Command

All Packages  Class Hierarchy  This Package  Previous  Next  Index