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

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

public interface VaryingClause
extends ASTNode

A representation of the VARYING clause within a RECORD clause of a file description entry.

The following features are supported:

See Also:
COBOLPackage.getVaryingClause()

Field Summary
static java.lang.String copyright
           
 
Method Summary
 DataRef getDependingOn()
          Returns the value of the 'Depending On' containment reference.
 Literal getMaximumSize()
          Returns the value of the 'Maximum Size' containment reference.
 Literal getMinimumSize()
          Returns the value of the 'Minimum Size' containment reference.
 void setDependingOn(DataRef value)
          Sets the value of the 'Depending On' containment reference.
 void setMaximumSize(Literal value)
          Sets the value of the 'Maximum Size' containment reference.
 void setMinimumSize(Literal value)
          Sets the value of the 'Minimum Size' 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

getMinimumSize

Literal getMinimumSize()
Returns the value of the 'Minimum Size' containment reference.

The value is the minimum size. If the minimum size is not specified, the value is null.

Returns:
the value of the 'Minimum Size' containment reference.
See Also:
setMinimumSize(Literal), COBOLPackage.getVaryingClause_MinimumSize()

setMinimumSize

void setMinimumSize(Literal value)
Sets the value of the 'Minimum Size' containment reference.

Parameters:
value - the new value of the 'Minimum Size' containment reference.
See Also:
getMinimumSize()

getMaximumSize

Literal getMaximumSize()
Returns the value of the 'Maximum Size' containment reference.

The value is the maximum size. If the maximum size is not specified, the value is null.

Returns:
the value of the 'Maximum Size' containment reference.
See Also:
setMaximumSize(Literal), COBOLPackage.getVaryingClause_MaximumSize()

setMaximumSize

void setMaximumSize(Literal value)
Sets the value of the 'Maximum Size' containment reference.

Parameters:
value - the new value of the 'Maximum Size' containment reference.
See Also:
getMaximumSize()

getDependingOn

DataRef getDependingOn()
Returns the value of the 'Depending On' containment reference.

The value is the data item specified in the DEPENDING ON phrase. If that phrase is not used, the value is null.

Returns:
the value of the 'Depending On' containment reference.
See Also:
setDependingOn(DataRef), COBOLPackage.getVaryingClause_DependingOn()

setDependingOn

void setDependingOn(DataRef value)
Sets the value of the 'Depending On' containment reference.

Parameters:
value - the new value of the 'Depending On' containment reference.
See Also:
getDependingOn()