org.eclipse.ocl.examples.xtext.markup.util
Class MarkupSwitch<T>

java.lang.Object
  extended by org.eclipse.emf.ecore.util.Switch<T>
      extended by org.eclipse.ocl.examples.xtext.markup.util.MarkupSwitch<T>
Direct Known Subclasses:
MarkupToHTML, MarkupToString, MarkupToTree, MarkupUtils

public class MarkupSwitch<T>
extends org.eclipse.emf.ecore.util.Switch<T>

The Switch for the model's inheritance hierarchy. It supports the call doSwitch(object) to invoke the caseXXX method for each class of the model, starting with the actual class of the object and proceeding up the inheritance hierarchy until a non-null result is returned, which is the result of the switch.

See Also:
MarkupPackage
Generated

Field Summary
protected static MarkupPackage modelPackage
          The cached model package
 
Constructor Summary
MarkupSwitch()
          Creates an instance of the switch.
 
Method Summary
 T caseBulletElement(BulletElement object)
          Returns the result of interpreting the object as an instance of 'Bullet Element'.
 T caseCompoundElement(CompoundElement object)
          Returns the result of interpreting the object as an instance of 'Compound Element'.
 T caseFigureElement(FigureElement object)
          Returns the result of interpreting the object as an instance of 'Figure Element'.
 T caseFigureRefElement(FigureRefElement object)
          Returns the result of interpreting the object as an instance of 'Figure Ref Element'.
 T caseFontElement(FontElement object)
          Returns the result of interpreting the object as an instance of 'Font Element'.
 T caseFootnoteElement(FootnoteElement object)
          Returns the result of interpreting the object as an instance of 'Footnote Element'.
 T caseHeadingElement(HeadingElement object)
          Returns the result of interpreting the object as an instance of 'Heading Element'.
 T caseMarkup(Markup object)
          Returns the result of interpreting the object as an instance of 'Markup'.
 T caseMarkupElement(MarkupElement object)
          Returns the result of interpreting the object as an instance of 'Element'.
 T caseNewLineElement(NewLineElement object)
          Returns the result of interpreting the object as an instance of 'New Line Element'.
 T caseNullElement(NullElement object)
          Returns the result of interpreting the object as an instance of 'Null Element'.
 T caseOCLCodeElement(OCLCodeElement object)
          Returns the result of interpreting the object as an instance of 'OCL Code Element'.
 T caseOCLEvalElement(OCLEvalElement object)
          Returns the result of interpreting the object as an instance of 'OCL Eval Element'.
 T caseOCLTextElement(OCLTextElement object)
          Returns the result of interpreting the object as an instance of 'OCL Text Element'.
 T caseTextElement(TextElement object)
          Returns the result of interpreting the object as an instance of 'Text Element'.
 T defaultCase(org.eclipse.emf.ecore.EObject object)
          Returns the result of interpreting the object as an instance of 'EObject'.
protected  T doSwitch(int classifierID, org.eclipse.emf.ecore.EObject theEObject)
          Calls caseXXX for each class of the model until one returns a non null result; it yields that result.
protected  boolean isSwitchFor(org.eclipse.emf.ecore.EPackage ePackage)
          Checks whether this is a switch for the given package.
 
Methods inherited from class org.eclipse.emf.ecore.util.Switch
doSwitch, doSwitch
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

modelPackage

protected static MarkupPackage modelPackage
The cached model package

Generated
Constructor Detail

MarkupSwitch

public MarkupSwitch()
Creates an instance of the switch.

Generated
Method Detail

isSwitchFor

protected boolean isSwitchFor(org.eclipse.emf.ecore.EPackage ePackage)
Checks whether this is a switch for the given package.

Specified by:
isSwitchFor in class org.eclipse.emf.ecore.util.Switch<T>
Parameters:
ePackage - the package in question.
Returns:
whether this is a switch for the given package.
Generated

doSwitch

protected T doSwitch(int classifierID,
                     org.eclipse.emf.ecore.EObject theEObject)
Calls caseXXX for each class of the model until one returns a non null result; it yields that result.

Overrides:
doSwitch in class org.eclipse.emf.ecore.util.Switch<T>
Returns:
the first non-null result returned by a caseXXX call.
Generated

caseBulletElement

public T caseBulletElement(BulletElement object)
Returns the result of interpreting the object as an instance of 'Bullet Element'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of 'Bullet Element'.
See Also:
doSwitch(EObject)
Generated

caseCompoundElement

public T caseCompoundElement(CompoundElement object)
Returns the result of interpreting the object as an instance of 'Compound Element'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of 'Compound Element'.
See Also:
doSwitch(EObject)
Generated

caseFigureElement

public T caseFigureElement(FigureElement object)
Returns the result of interpreting the object as an instance of 'Figure Element'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of 'Figure Element'.
See Also:
doSwitch(EObject)
Generated

caseFigureRefElement

public T caseFigureRefElement(FigureRefElement object)
Returns the result of interpreting the object as an instance of 'Figure Ref Element'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of 'Figure Ref Element'.
See Also:
doSwitch(EObject)
Generated

caseFontElement

public T caseFontElement(FontElement object)
Returns the result of interpreting the object as an instance of 'Font Element'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of 'Font Element'.
See Also:
doSwitch(EObject)
Generated

caseFootnoteElement

public T caseFootnoteElement(FootnoteElement object)
Returns the result of interpreting the object as an instance of 'Footnote Element'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of 'Footnote Element'.
See Also:
doSwitch(EObject)
Generated

caseHeadingElement

public T caseHeadingElement(HeadingElement object)
Returns the result of interpreting the object as an instance of 'Heading Element'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of 'Heading Element'.
See Also:
doSwitch(EObject)
Generated

caseMarkup

public T caseMarkup(Markup object)
Returns the result of interpreting the object as an instance of 'Markup'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of 'Markup'.
See Also:
doSwitch(EObject)
Generated

caseMarkupElement

public T caseMarkupElement(MarkupElement object)
Returns the result of interpreting the object as an instance of 'Element'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of 'Element'.
See Also:
doSwitch(EObject)
Generated

caseNewLineElement

public T caseNewLineElement(NewLineElement object)
Returns the result of interpreting the object as an instance of 'New Line Element'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of 'New Line Element'.
See Also:
doSwitch(EObject)
Generated

caseNullElement

public T caseNullElement(NullElement object)
Returns the result of interpreting the object as an instance of 'Null Element'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of 'Null Element'.
See Also:
doSwitch(EObject)
Generated

caseOCLCodeElement

public T caseOCLCodeElement(OCLCodeElement object)
Returns the result of interpreting the object as an instance of 'OCL Code Element'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of 'OCL Code Element'.
See Also:
doSwitch(EObject)
Generated

caseOCLEvalElement

public T caseOCLEvalElement(OCLEvalElement object)
Returns the result of interpreting the object as an instance of 'OCL Eval Element'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of 'OCL Eval Element'.
See Also:
doSwitch(EObject)
Generated

caseOCLTextElement

public T caseOCLTextElement(OCLTextElement object)
Returns the result of interpreting the object as an instance of 'OCL Text Element'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of 'OCL Text Element'.
See Also:
doSwitch(EObject)
Generated

caseTextElement

public T caseTextElement(TextElement object)
Returns the result of interpreting the object as an instance of 'Text Element'. This implementation returns null; returning a non-null result will terminate the switch.

Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of 'Text Element'.
See Also:
doSwitch(EObject)
Generated

defaultCase

public T defaultCase(org.eclipse.emf.ecore.EObject object)
Returns the result of interpreting the object as an instance of 'EObject'. This implementation returns null; returning a non-null result will terminate the switch, but this is the last case anyway.

Overrides:
defaultCase in class org.eclipse.emf.ecore.util.Switch<T>
Parameters:
object - the target of the switch.
Returns:
the result of interpreting the object as an instance of 'EObject'.
See Also:
Switch.doSwitch(org.eclipse.emf.ecore.EObject)
Generated