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

All Superinterfaces:
ASTNode, org.eclipse.emf.ecore.EObject, org.eclipse.emf.common.notify.Notifier, com.ibm.etools.cobol.application.model.cobol.ProcedureDivisionOrEntryStmt, Stmt

public interface EntryStmt
extends Stmt, com.ibm.etools.cobol.application.model.cobol.ProcedureDivisionOrEntryStmt

A representation of an ENTRY statement in the PROCEDURE division.

The following features are supported:

See Also:
COBOLPackage.getEntryStmt()

Field Summary
static java.lang.String copyright
           
 
Method Summary
 java.lang.String getEntryName()
          Returns the value of the 'Entry Name' attribute.
 java.util.List getUsing()
          Returns the value of the 'Using' containment reference list.
 void setEntryName(java.lang.String value)
          Sets the value of the 'Entry Name' 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

getEntryName

java.lang.String getEntryName()
Returns the value of the 'Entry Name' attribute.

The value is the literal directly after the ENTRY keyword.

Returns:
the value of the 'Entry Name' attribute.
See Also:
setEntryName(String), COBOLPackage.getEntryStmt_EntryName()

setEntryName

void setEntryName(java.lang.String value)
Sets the value of the 'Entry Name' attribute.

Parameters:
value - the new value of the 'Entry Name' attribute.
See Also:
getEntryName()

getUsing

java.util.List getUsing()
Returns the value of the 'Using' containment reference list. The list contents are of type FormalParameter.

The list contains the formal parameters in the USING clause.

Returns:
the value of the 'Using' containment reference list.
See Also:
COBOLPackage.getEntryStmt_Using()