pt.compiler.parser.ast.expr
Class TaskClauseExpr

java.lang.Object
  extended by pt.compiler.parser.ast.Node
      extended by pt.compiler.parser.ast.expr.Expression
          extended by pt.compiler.parser.ast.expr.TaskClauseExpr

public class TaskClauseExpr
extends Expression


Constructor Summary
TaskClauseExpr(int line, int column, Expression expression, PT_DependsOn dependences, PT_Notify notifyList, PT_Notify notifyInterList, PT_Handler exceptionHandlerList)
           
 
Method Summary
<R,A> R
accept(GenericVisitor<R,A> v, A arg)
           
<A> void
accept(VoidVisitor<A> v, A arg)
           
 PT_DependsOn getDependences()
           
 PT_Handler getExceptionHandlerList()
           
 Expression getExpression()
           
 PT_Notify getNotifyInterList()
           
 PT_Notify getNotifyList()
           
 
Methods inherited from class pt.compiler.parser.ast.Node
getBeginColumn, getBeginLine, getData, getEndColumn, getEndLine, setData, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TaskClauseExpr

public TaskClauseExpr(int line,
                      int column,
                      Expression expression,
                      PT_DependsOn dependences,
                      PT_Notify notifyList,
                      PT_Notify notifyInterList,
                      PT_Handler exceptionHandlerList)
Method Detail

getExpression

public Expression getExpression()

getDependences

public PT_DependsOn getDependences()

getNotifyList

public PT_Notify getNotifyList()

getNotifyInterList

public PT_Notify getNotifyInterList()

getExceptionHandlerList

public PT_Handler getExceptionHandlerList()

accept

public <A> void accept(VoidVisitor<A> v,
                       A arg)
Overrides:
accept in class Node

accept

public <R,A> R accept(GenericVisitor<R,A> v,
                      A arg)
Overrides:
accept in class Node