org.eclipse.ocl.examples.codegen.cgmodel
Interface CGModel

All Superinterfaces:
CGElement, CGNamedElement, org.eclipse.emf.ecore.EObject, Nameable, org.eclipse.emf.common.notify.Notifier
All Known Implementing Classes:
CGModelImpl

public interface CGModel
extends CGNamedElement

A representation of the model object 'CG Model'.

The following features are supported:

See Also:
CGModelPackage.getCGModel()
Generated

Method Summary
 java.util.List<CGConstant> getGlobals()
          Returns the value of the 'Globals' containment reference list.
 java.util.List<CGPackage> getPackages()
          Returns the value of the 'Packages' containment reference list.
 
Methods inherited from interface org.eclipse.ocl.examples.codegen.cgmodel.CGNamedElement
getAst, getName, setAst, setName
 
Methods inherited from interface org.eclipse.ocl.examples.codegen.cgmodel.CGElement
accept, getChildren, getParent, getPlace, isContext, rewriteAs
 
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
 

Method Detail

getGlobals

java.util.List<CGConstant> getGlobals()
Returns the value of the 'Globals' containment reference list. The list contents are of type CGConstant.

If the meaning of the 'Globals' containment reference list isn't clear, there really should be more of a description here...

Returns:
the value of the 'Globals' containment reference list.
See Also:
CGModelPackage.getCGModel_Globals()
Generated

getPackages

java.util.List<CGPackage> getPackages()
Returns the value of the 'Packages' containment reference list. The list contents are of type CGPackage.

If the meaning of the 'Packages' containment reference list isn't clear, there really should be more of a description here...

Returns:
the value of the 'Packages' containment reference list.
See Also:
CGModelPackage.getCGModel_Packages()
Generated