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

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

public interface SubtractCorrStmt
extends SubtractStmt

A representation of a SUBTRACT statement with a CORRESPONDING clause.

The following features are supported:

See Also:
COBOLPackage.getSubtractCorrStmt()

Field Summary
static java.lang.String copyright
           
 
Method Summary
 ArithOperand getFrom()
          Returns the value of the 'From' containment reference.
 DataRef getSubtract()
          Returns the value of the 'Subtract' containment reference.
 void setFrom(ArithOperand value)
          Sets the value of the 'From' containment reference.
 void setSubtract(DataRef value)
          Sets the value of the 'Subtract' containment reference.
 
Methods inherited from interface com.ibm.etools.cobol.application.model.cobol.SubtractStmt
isEndSubtractUsed, setEndSubtractUsed
 
Methods inherited from interface com.ibm.etools.cobol.application.model.cobol.ArithStmt
getNotOnSizeError, getOnSizeError
 
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

getSubtract

DataRef getSubtract()
Returns the value of the 'Subtract' containment reference.

The value is the data item specified before the FROM keyword.

Returns:
the value of the 'Subtract' containment reference.
See Also:
setSubtract(DataRef), COBOLPackage.getSubtractCorrStmt_Subtract()

setSubtract

void setSubtract(DataRef value)
Sets the value of the 'Subtract' containment reference.

Parameters:
value - the new value of the 'Subtract' containment reference.
See Also:
getSubtract()

getFrom

ArithOperand getFrom()
Returns the value of the 'From' containment reference.

The value is the data item specified after the FROM keyword.

Returns:
the value of the 'From' containment reference.
See Also:
setFrom(ArithOperand), COBOLPackage.getSubtractCorrStmt_From()

setFrom

void setFrom(ArithOperand value)
Sets the value of the 'From' containment reference.

Parameters:
value - the new value of the 'From' containment reference.
See Also:
getFrom()