org.eclipse.ocl.examples.pivot
Interface DataType

All Superinterfaces:
Class, DomainElement, DomainNamedElement, DomainNamespace, DomainType, Element, org.eclipse.emf.ecore.EObject, Nameable, NamedElement, Namespace, org.eclipse.emf.common.notify.Notifier, OCLValue, ParameterableElement, PivotObject, TemplateableElement, Type, Visitable
All Known Subinterfaces:
BagType, CollectionType, Enumeration, LambdaType, OrderedSetType, PrimitiveType, SequenceType, SetType, TupleType
All Known Implementing Classes:
BagTypeImpl, CollectionTypeImpl, DataTypeImpl, EnumerationImpl, LambdaTypeImpl, OrderedSetTypeImpl, PrimitiveTypeImpl, SequenceTypeImpl, SetTypeImpl, TupleTypeImpl

public interface DataType
extends Class

A representation of the model object 'Data Type'. DataType is an abstract class that acts as a common superclass for different kinds of data types.

The following features are supported:

See Also:
PivotPackage.getDataType()
Generated

Method Summary
 Type getBehavioralType()
          Returns the value of the 'Behavioral Type' reference.
 boolean isSerializable()
          Returns the value of the 'Is Serializable' attribute.
 void setBehavioralType(Type value)
          Sets the value of the 'Behavioral Type' reference.
 void setIsSerializable(boolean value)
          Sets the value of the 'Is Serializable' attribute.
 
Methods inherited from interface org.eclipse.ocl.examples.pivot.Class
getNestedType, getOwnedBehavior, isAbstract, isActive, isInterface, setIsAbstract, setIsActive, setIsInterface
 
Methods inherited from interface org.eclipse.ocl.examples.pivot.Type
getExtendedBys, getInstanceClassName, getOwnedAttribute, getOwnedInvariant, getOwnedOperation, getPackage, getSuperClass, setInstanceClassName, setPackage, specializeIn, validateUniqueInvariantName
 
Methods inherited from interface org.eclipse.ocl.examples.pivot.TemplateableElement
getOwnedTemplateSignature, getTemplateBinding, getUnspecializedElement, isTemplate, parameterableElements, setOwnedTemplateSignature, setUnspecializedElement
 
Methods inherited from interface org.eclipse.ocl.examples.pivot.ParameterableElement
getOwningTemplateParameter, getTemplateParameter, isCompatibleWith, isTemplateParameter, setOwningTemplateParameter, setTemplateParameter
 
Methods inherited from interface org.eclipse.ocl.examples.domain.elements.DomainType
conformsTo, createInstance, createInstance, getCommonType, getInheritance, getLocalOperations, getLocalProperties, getLocalSuperTypes, getMetaTypeName, getName, getNormalizedType, getTypeId, getTypeParameters, isEqualTo, isEqualToUnspecializedType, isInvalid, isOrdered, isUnique, lookupImplementation, specializeIn
 
Methods inherited from interface org.eclipse.ocl.examples.domain.elements.DomainNamespace
getOwnedRule
 
Methods inherited from interface org.eclipse.ocl.examples.domain.values.OCLValue
oclEquals, oclHashCode
 
Methods inherited from interface org.eclipse.ocl.examples.pivot.Namespace
getOwnedRule
 
Methods inherited from interface org.eclipse.ocl.examples.pivot.NamedElement
getName, isStatic, setIsStatic, setName
 
Methods inherited from interface org.eclipse.ocl.examples.pivot.Element
allOwnedElements, getETarget, getExtension, getOwnedAnnotation, getOwnedComment, getValue
 
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
 
Methods inherited from interface org.eclipse.ocl.examples.pivot.util.Visitable
accept, eClass
 

Method Detail

isSerializable

boolean isSerializable()
Returns the value of the 'Is Serializable' attribute. The default value is "true".

If the meaning of the 'Serializable' attribute isn't clear, there really should be more of a description here...

Returns:
the value of the 'Is Serializable' attribute.
See Also:
setIsSerializable(boolean), PivotPackage.getDataType_IsSerializable()
Generated

setIsSerializable

void setIsSerializable(boolean value)
Sets the value of the 'Is Serializable' attribute.

Parameters:
value - the new value of the 'Is Serializable' attribute.
See Also:
isSerializable()
Generated

getBehavioralType

Type getBehavioralType()
Returns the value of the 'Behavioral Type' reference.

If the meaning of the 'Behavioral Type' reference isn't clear, there really should be more of a description here...

Returns:
the value of the 'Behavioral Type' reference.
See Also:
setBehavioralType(Type), PivotPackage.getDataType_BehavioralType()
Generated

setBehavioralType

void setBehavioralType(Type value)
Sets the value of the 'Behavioral Type' reference.

Parameters:
value - the new value of the 'Behavioral Type' reference.
See Also:
getBehavioralType()
Generated