Package org.eclipse.gmt.modisco.java
Interface SwitchCase
- All Superinterfaces:
ASTNode,org.eclipse.emf.ecore.EObject,org.eclipse.emf.common.notify.Notifier,Statement
- All Known Implementing Classes:
SwitchCaseImpl
public interface SwitchCase extends Statement
A representation of the model object 'Switch Case'.
The following features are supported:
- See Also:
JavaPackage.getSwitchCase()
-
Method Summary
Modifier and Type Method Description ExpressiongetExpression()Returns the value of the 'Expression' containment reference.booleanisDefault()Returns the value of the 'Default' attribute.voidsetDefault(boolean value)Sets the value of the 'Default' attribute.voidsetExpression(Expression value)Sets the value of the 'Expression' containment reference.Methods inherited from interface org.eclipse.gmt.modisco.java.ASTNode
getComments, getOriginalClassFile, getOriginalCompilationUnit, setOriginalClassFile, setOriginalCompilationUnitMethods inherited from interface org.eclipse.emf.ecore.EObject
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eInvoke, eIsProxy, eIsSet, eResource, eSet, eUnsetMethods inherited from interface org.eclipse.emf.common.notify.Notifier
eAdapters, eDeliver, eNotify, eSetDeliver
-
Method Details
-
isDefault
boolean isDefault()Returns the value of the 'Default' attribute.- Returns:
- the value of the 'Default' attribute.
- See Also:
setDefault(boolean),JavaPackage.getSwitchCase_Default()
-
setDefault
void setDefault(boolean value)Sets the value of the 'Default' attribute.- Parameters:
value- the new value of the 'Default' attribute.- See Also:
isDefault()
-
getExpression
Expression getExpression()Returns the value of the 'Expression' containment reference.- Returns:
- the value of the 'Expression' containment reference.
- See Also:
setExpression(Expression),JavaPackage.getSwitchCase_Expression()
-
setExpression
Sets the value of the 'Expression' containment reference.- Parameters:
value- the new value of the 'Expression' containment reference.- See Also:
getExpression()
-