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

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

public interface WriteAdvancingClause
extends ASTNode

A representation of the ADVANCING clause in a WRITE statement.

The following features are supported:

See Also:
COBOLPackage.getWriteAdvancingClause()

Field Summary
static java.lang.String copyright
           
 
Method Summary
 DataRefOrLiteral getLines()
          Returns the value of the 'Lines' containment reference.
 MnemonicName getMnemonicName()
          Returns the value of the 'Mnemonic Name' reference.
 boolean isBeforeAdvancing()
          Returns the value of the 'Before Advancing' attribute.
 boolean isPage()
          Returns the value of the 'Page' attribute.
 void setBeforeAdvancing(boolean value)
          Sets the value of the 'Before Advancing' attribute.
 void setLines(DataRefOrLiteral value)
          Sets the value of the 'Lines' containment reference.
 void setMnemonicName(MnemonicName value)
          Sets the value of the 'Mnemonic Name' reference.
 void setPage(boolean value)
          Sets the value of the 'Page' 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

isBeforeAdvancing

boolean isBeforeAdvancing()
Returns the value of the 'Before Advancing' attribute.

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

Returns:
the value of the 'Before Advancing' attribute.
See Also:
setBeforeAdvancing(boolean), COBOLPackage.getWriteAdvancingClause_BeforeAdvancing()

setBeforeAdvancing

void setBeforeAdvancing(boolean value)
Sets the value of the 'Before Advancing' attribute.

Parameters:
value - the new value of the 'Before Advancing' attribute.
See Also:
isBeforeAdvancing()

getLines

DataRefOrLiteral getLines()
Returns the value of the 'Lines' containment reference.

The value is the data item or literal specified before the LINES keyword.

Returns:
the value of the 'Lines' containment reference.
See Also:
setLines(DataRefOrLiteral), COBOLPackage.getWriteAdvancingClause_Lines()

setLines

void setLines(DataRefOrLiteral value)
Sets the value of the 'Lines' containment reference.

Parameters:
value - the new value of the 'Lines' containment reference.
See Also:
getLines()

getMnemonicName

MnemonicName getMnemonicName()
Returns the value of the 'Mnemonic Name' reference.

The value is the mnemonic name specified before the LINES keyword.

Returns:
the value of the 'Mnemonic Name' reference.
See Also:
setMnemonicName(MnemonicName), COBOLPackage.getWriteAdvancingClause_MnemonicName()

setMnemonicName

void setMnemonicName(MnemonicName value)
Sets the value of the 'Mnemonic Name' reference.

Parameters:
value - the new value of the 'Mnemonic Name' reference.
See Also:
getMnemonicName()

isPage

boolean isPage()
Returns the value of the 'Page' attribute.

The value is true if PAGE is present; false otherwise.

Returns:
the value of the 'Page' attribute.
See Also:
setPage(boolean), COBOLPackage.getWriteAdvancingClause_Page()

setPage

void setPage(boolean value)
Sets the value of the 'Page' attribute.

Parameters:
value - the new value of the 'Page' attribute.
See Also:
isPage()