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

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

public interface TableKeyInfo
extends ASTNode

A representation of an ASCENDING KEY or DESCENDING key phrase in a data declaration entry.

The following features are supported:

See Also:
COBOLPackage.getTableKeyInfo()

Field Summary
static java.lang.String copyright
           
 
Method Summary
 java.util.List getKeyItems()
          Returns the value of the 'Key Items' reference list.
 boolean isIsAscending()
          Returns the value of the 'Is Ascending' attribute.
 void setIsAscending(boolean value)
          Sets the value of the 'Is Ascending' 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

isIsAscending

boolean isIsAscending()
Returns the value of the 'Is Ascending' attribute.

The value is true if the ASCENDING KEY keywords are present; false if the DESCENDING KEY keywords are present.

Returns:
the value of the 'Is Ascending' attribute.
See Also:
setIsAscending(boolean), COBOLPackage.getTableKeyInfo_IsAscending()

setIsAscending

void setIsAscending(boolean value)
Sets the value of the 'Is Ascending' attribute.

Parameters:
value - the new value of the 'Is Ascending' attribute.
See Also:
isIsAscending()

getKeyItems

java.util.List getKeyItems()
Returns the value of the 'Key Items' reference list. The list contents are of type DataItem.

Returns:
the value of the 'Key Items' reference list.
See Also:
COBOLPackage.getTableKeyInfo_KeyItems()