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

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

public interface DisplayStmt
extends Stmt

A representation of a DISPLAY statement in the PROCEDURE division.

The following features are supported:

See Also:
COBOLPackage.getDisplayStmt()

Field Summary
static java.lang.String copyright
           
 
Method Summary
 Environment getEnvironment()
          Returns the value of the 'Environment' containment reference.
 MnemonicName getEnvironmentName()
          Returns the value of the 'Environment Name' reference.
 java.util.List getItems()
          Returns the value of the 'Items' containment reference list.
 boolean isWithNoAdvancing()
          Returns the value of the 'With No Advancing' attribute.
 void setEnvironment(Environment value)
          Sets the value of the 'Environment' containment reference.
 void setEnvironmentName(MnemonicName value)
          Sets the value of the 'Environment Name' reference.
 void setWithNoAdvancing(boolean value)
          Sets the value of the 'With No Advancing' attribute.
 
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

getItems

java.util.List getItems()
Returns the value of the 'Items' containment reference list. The list contents are of type DataRefOrLiteral.

The list contains the data items or literals to display.

Returns:
the value of the 'Items' containment reference list.
See Also:
COBOLPackage.getDisplayStmt_Items()

getEnvironmentName

MnemonicName getEnvironmentName()
Returns the value of the 'Environment Name' reference.

The value is a mnemonic name.

Returns:
the value of the 'Environment Name' reference.
See Also:
setEnvironmentName(MnemonicName), COBOLPackage.getDisplayStmt_EnvironmentName()

setEnvironmentName

void setEnvironmentName(MnemonicName value)
Sets the value of the 'Environment Name' reference.

Parameters:
value - the new value of the 'Environment Name' reference.
See Also:
getEnvironmentName()

getEnvironment

Environment getEnvironment()
Returns the value of the 'Environment' containment reference.

Returns:
the value of the 'Environment' containment reference.
See Also:
setEnvironment(Environment), COBOLPackage.getDisplayStmt_Environment()

setEnvironment

void setEnvironment(Environment value)
Sets the value of the 'Environment' containment reference.

Parameters:
value - the new value of the 'Environment' containment reference.
See Also:
getEnvironment()

isWithNoAdvancing

boolean isWithNoAdvancing()
Returns the value of the 'With No Advancing' attribute.

The value is true if the WITH NO ADVANCING clause is present; false otherwise.

Returns:
the value of the 'With No Advancing' attribute.
See Also:
setWithNoAdvancing(boolean), COBOLPackage.getDisplayStmt_WithNoAdvancing()

setWithNoAdvancing

void setWithNoAdvancing(boolean value)
Sets the value of the 'With No Advancing' attribute.

Parameters:
value - the new value of the 'With No Advancing' attribute.
See Also:
isWithNoAdvancing()