com.ibm.etools.cobol.application.model.cobol
Interface PIControllerUntil

All Superinterfaces:
ASTNode, org.eclipse.emf.ecore.EObject, org.eclipse.emf.common.notify.Notifier, PerformIterationController

public interface PIControllerUntil
extends PerformIterationController

A representation of the UNTIL phrase in a PERFORM statement.

The following features are supported:

See Also:
COBOLPackage.getPIControllerUntil()

Field Summary
static java.lang.String copyright
           
 
Method Summary
 ExprConditional getUntil()
          Returns the value of the 'Until' containment reference.
 boolean isTestAfter()
          Returns the value of the 'Test After' attribute.
 void setTestAfter(boolean value)
          Sets the value of the 'Test After' attribute.
 void setUntil(ExprConditional value)
          Sets the value of the 'Until' containment reference.
 
Methods inherited from interface com.ibm.etools.cobol.application.model.cobol.ASTNode
getBeginColumn, getBeginFile, getBeginLine, getEndColumn, getEndFile, getEndLine, getParent, getTag, setBeginColumn, setBeginFile, setBeginLine, setEndColumn, setEndFile, setEndLine, setParent, setTag
 
Methods inherited from interface org.eclipse.emf.ecore.EObject
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eInvoke, eIsProxy, eIsSet, eResource, eSet, eUnset
 
Methods inherited from interface org.eclipse.emf.common.notify.Notifier
eAdapters, eDeliver, eNotify, eSetDeliver
 

Field Detail

copyright

static final java.lang.String copyright

See Also:
Constant Field Values
Method Detail

getUntil

ExprConditional getUntil()
Returns the value of the 'Until' containment reference.

The value is the conditional expression in the UNTIL clause.

Returns:
the value of the 'Until' containment reference.
See Also:
setUntil(ExprConditional), COBOLPackage.getPIControllerUntil_Until()

setUntil

void setUntil(ExprConditional value)
Sets the value of the 'Until' containment reference.

Parameters:
value - the new value of the 'Until' containment reference.
See Also:
getUntil()

isTestAfter

boolean isTestAfter()
Returns the value of the 'Test After' attribute.

The value is true if TEST AFTER is present; false if TEST BEFORE is present.

Returns:
the value of the 'Test After' attribute.
See Also:
setTestAfter(boolean), COBOLPackage.getPIControllerUntil_TestAfter()

setTestAfter

void setTestAfter(boolean value)
Sets the value of the 'Test After' attribute.

Parameters:
value - the new value of the 'Test After' attribute.
See Also:
isTestAfter()