|
||||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
A representation of the model object 'Data Type'. DataType defines a kind of classifier in which operations are all pure functions (i.e., they can return data values but they cannot change data values, because they have no identity). For example, an �add� operation on a number with another number as an argument yields a third number as a result; the target and argument are unchanged. A DataType may also contain attributes to support the modeling of structured data types.
The following features are supported:
UML2Package.getDataType()
Field Summary | |
---|---|
static java.lang.String |
copyright
|
Fields inherited from interface org.eclipse.uml2.NamedElement |
---|
SEPARATOR |
Method Summary | |
---|---|
Property |
createOwnedAttribute()
Creates a Property and appends it to the 'Owned Attribute' containment reference list |
Property |
createOwnedAttribute(EClass eClass)
Creates a Property and appends it to the 'Owned Attribute' containment reference list |
Property |
createOwnedAttribute(java.lang.String name,
Type type,
int lowerBound,
int upperBound)
Creates a property with the specified name, type, lower bound, and upper bound as an owned attribute of this data type. |
Operation |
createOwnedOperation()
Creates a Operation and appends it to the 'Owned Operation' containment reference list |
Operation |
createOwnedOperation(EClass eClass)
Deprecated. Use #createOwnedOperation() instead. |
Operation |
createOwnedOperation(java.lang.String name,
Type returnType,
java.lang.String[] parameterNames,
Type[] parameterTypes)
Creates an operation with the specified name, return type, parameter names, and parameter types as an owned operation of this data type. |
Property |
getOwnedAttribute(java.lang.String name)
Retrieves the Property with the specified 'Name' from the 'Owned Attribute' containment reference list |
EList |
getOwnedAttributes()
Returns the value of the 'Owned Attribute' containment reference list. |
Operation |
getOwnedOperation(java.lang.String name)
Retrieves the Operation with the specified 'Name' from the 'Owned Operation' containment reference list |
EList |
getOwnedOperations()
Returns the value of the 'Owned Operation' containment reference list. |
Methods inherited from interface org.eclipse.uml2.NamedElement |
---|
allNamespaces, createDependency, createNameExpression, createNameExpression, getClientDependencies, getClientDependency, getLabel, getLabel, getName, getNameExpression, getNamespace, getQualifiedName, getVisibility, isDistinguishableFrom, qualifiedName, separator, setName, setNameExpression, setVisibility, validateNoName, validateQualifiedName, validateVisibilityNeedsOwnership |
Methods inherited from interface org.eclipse.uml2.TemplateableElement |
---|
createOwnedTemplateSignature, createOwnedTemplateSignature, createTemplateBinding, createTemplateBinding, getOwnedTemplateSignature, getTemplateBindings, parameterableElements, setOwnedTemplateSignature |
Methods inherited from interface org.eclipse.uml2.Element |
---|
addKeyword, allOwnedElements, apply, createEAnnotation, createOwnedComment, createOwnedComment, destroy, getApplicableStereotype, getApplicableStereotypes, getAppliedStereotype, getAppliedStereotypes, getAppliedVersion, getKeywords, getModel, getNearestPackage, getOwnedComments, getOwnedElements, getOwner, getValue, hasKeyword, hasValue, isApplied, isRequired, mustBeOwned, removeKeyword, setValue, unapply, validateHasOwner, validateNotOwnSelf |
Methods inherited from interface org.eclipse.emf.ecore.EModelElement |
---|
getEAnnotation, getEAnnotations |
Methods inherited from interface org.eclipse.emf.ecore.EObject |
---|
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eIsProxy, eIsSet, eResource, eSet, eUnset |
Methods inherited from interface org.eclipse.emf.common.notify.Notifier |
---|
eAdapters, eDeliver, eNotify, eSetDeliver |
Methods inherited from interface org.eclipse.uml2.Type |
---|
conformsTo, createAssociation, getPackage |
Methods inherited from interface org.eclipse.uml2.PackageableElement |
---|
getPackageableElement_visibility, setPackageableElement_visibility |
Methods inherited from interface org.eclipse.uml2.ParameterableElement |
---|
getOwningParameter, getTemplateParameter, setOwningParameter, setTemplateParameter |
Methods inherited from interface org.eclipse.uml2.RedefinableElement |
---|
getRedefinedElement, getRedefinedElements, getRedefinitionContext, getRedefinitionContexts, isConsistentWith, isLeaf, isRedefinitionContextValid, setIsLeaf, validateRedefinitionConsistent, validateRedefinitionContextValid |
Field Detail |
public static final java.lang.String copyright
Method Detail |
public EList getOwnedAttributes()
Property
.
It is bidirectional and its opposite is 'Datatype
'.
If the meaning of the 'Owned Attribute' containment reference list isn't clear, there really should be more of a description here...
The Attributes owned by the DataType. Subsets Classifier::attribute and Element:: ownedMember.
UML2Package.getDataType_OwnedAttribute()
,
Property.getDatatype()
public Property getOwnedAttribute(java.lang.String name)
Property
with the specified 'Name' from the 'Owned Attribute' containment reference list.
name
- The 'Name' of the Property
to retrieve.
Property
with the specified 'Name', or null
.getOwnedAttributes()
public Property createOwnedAttribute(EClass eClass)
Property
and appends it to the 'Owned Attribute' containment reference list.
eClass
- The Ecore class of the Property
to create.
Property
.getOwnedAttributes()
public Property createOwnedAttribute()
Property
and appends it to the 'Owned Attribute' containment reference list.
Property
.getOwnedAttributes()
public EList getOwnedOperations()
Operation
.
It is bidirectional and its opposite is 'Datatype
'.
If the meaning of the 'Owned Operation' containment reference list isn't clear, there really should be more of a description here...
The Operations owned by the DataType. Subsets Classifier::feature and Element:: ownedMember.
UML2Package.getDataType_OwnedOperation()
,
Operation.getDatatype()
public Operation getOwnedOperation(java.lang.String name)
Operation
with the specified 'Name' from the 'Owned Operation' containment reference list.
name
- The 'Name' of the Operation
to retrieve.
Operation
with the specified 'Name', or null
.getOwnedOperations()
public Operation createOwnedOperation(EClass eClass)
Operation
and appends it to the 'Owned Operation' containment reference list.
eClass
- The Ecore class of the Operation
to create.
Operation
.getOwnedOperations()
public Operation createOwnedOperation()
Operation
and appends it to the 'Owned Operation' containment reference list.
Operation
.getOwnedOperations()
public Property createOwnedAttribute(java.lang.String name, Type type, int lowerBound, int upperBound)
name
- The name for the owned attribute.type
- The type for the owned attribute.lowerBound
- The lower bound for the owned attribute.upperBound
- The upper bound for the owned attribute.
java.lang.IllegalArgumentException
- If either of the bounds is invalid.public Operation createOwnedOperation(java.lang.String name, Type returnType, java.lang.String[] parameterNames, Type[] parameterTypes)
name
- The name for the owned operation.returnType
- The return type for the owned operation, or null
.parameterNames
- The names of the owned operation's parameters, or
null
.parameterTypes
- The types of the owned operation's parameters, or
null
.
java.lang.IllegalArgumentException
- If the number of parameter names does not match the number
of parameter types.
|
Copyright 2003, 2005 IBM Corporation and others. All Rights Reserved. |
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |