org.eclipse.ocl.examples.pivot
Interface NamedElement

All Superinterfaces:
DomainElement, DomainNamedElement, Element, org.eclipse.emf.ecore.EObject, Nameable, org.eclipse.emf.common.notify.Notifier, PivotObject, Visitable
All Known Subinterfaces:
Annotation, AnyType, AssociationClass, AssociationClassCallExp, BagType, Behavior, BooleanLiteralExp, CallExp, CallOperationAction, Class, CollectionItem, CollectionLiteralExp, CollectionLiteralPart, CollectionRange, CollectionType, ConnectionPointReference, Constraint, ConstructorExp, ConstructorPart, DataType, Detail, DynamicType, ElementExtension, Enumeration, EnumerationLiteral, EnumLiteralExp, ExpressionInOCL, Feature, FeatureCallExp, FinalState, IfExp, Import, IntegerLiteralExp, InvalidLiteralExp, InvalidType, IterateExp, Iteration, IteratorExp, LambdaType, LetExp, Library, LiteralExp, LoopExp, MessageExp, MessageType, Metaclass<T>, Namespace, NavigationCallExp, NullLiteralExp, NumericLiteralExp, OCLExpression, OpaqueExpression, Operation, OperationCallExp, OppositePropertyCallExp, OrderedSetType, Package, Parameter, Precedence, PrimitiveLiteralExp, PrimitiveType, Profile, Property, PropertyCallExp, Pseudostate, RealLiteralExp, Region, Root, SelfType, SendSignalAction, SequenceType, SetType, Signal, State, StateExp, StateMachine, Stereotype, StringLiteralExp, TemplateParameterType, Transition, Trigger, TupleLiteralExp, TupleLiteralPart, TupleType, Type, TypedElement, TypedMultiplicityElement, TypeExp, UnlimitedNaturalLiteralExp, UnspecifiedType, UnspecifiedValueExp, ValueSpecification, Variable, VariableDeclaration, VariableExp, Vertex, VoidType
All Known Implementing Classes:
AnnotationImpl, AnyTypeImpl, AssociationClassCallExpImpl, AssociationClassImpl, BagTypeImpl, BehaviorImpl, BooleanLiteralExpImpl, CallExpImpl, CallOperationActionImpl, ClassImpl, CollectionItemImpl, CollectionLiteralExpImpl, CollectionLiteralPartImpl, CollectionRangeImpl, CollectionTypeImpl, ConnectionPointReferenceImpl, ConstraintImpl, ConstructorExpImpl, ConstructorPartImpl, DataTypeImpl, DetailImpl, DynamicTypeImpl, ElementExtensionImpl, EnumerationImpl, EnumerationLiteralImpl, EnumLiteralExpImpl, ExpressionInOCLImpl, FeatureCallExpImpl, FeatureImpl, FinalStateImpl, IfExpImpl, ImportImpl, IntegerLiteralExpImpl, InvalidLiteralExpImpl, InvalidTypeImpl, IterateExpImpl, IterationImpl, IteratorExpImpl, LambdaTypeImpl, LetExpImpl, LibraryImpl, LiteralExpImpl, LoopExpImpl, MessageExpImpl, MessageTypeImpl, MetaclassImpl, NamedElementImpl, NamespaceImpl, NavigationCallExpImpl, NullLiteralExpImpl, NumericLiteralExpImpl, OCLExpressionImpl, OpaqueExpressionImpl, OperationCallExpImpl, OperationImpl, OppositePropertyCallExpImpl, OrderedSetTypeImpl, Orphanage, PackageImpl, ParameterImpl, PrecedenceImpl, PrimitiveLiteralExpImpl, PrimitiveTypeImpl, ProfileImpl, PropertyCallExpImpl, PropertyImpl, PseudostateImpl, RealLiteralExpImpl, RegionImpl, RootImpl, SelfTypeImpl, SendSignalActionImpl, SequenceTypeImpl, SetTypeImpl, SignalImpl, StateExpImpl, StateImpl, StateMachineImpl, StereotypeImpl, StringLiteralExpImpl, TemplateParameterTypeImpl, TransitionImpl, TriggerImpl, TupleLiteralExpImpl, TupleLiteralPartImpl, TuplePartImpl, TupleTypeImpl, TupleTypeManager.TuplePart, TypedElementImpl, TypedMultiplicityElementImpl, TypeExpImpl, TypeImpl, UnlimitedNaturalLiteralExpImpl, UnspecifiedTypeImpl, UnspecifiedValueExpImpl, ValueSpecificationImpl, VariableDeclarationImpl, VariableExpImpl, VariableImpl, VertexImpl, VoidTypeImpl

public interface NamedElement
extends Element, Nameable, DomainNamedElement

A representation of the model object 'Named Element'.

See Also:
PivotPackage.getNamedElement()
Extends:
org.eclipse.ocl.examples.domain.elements.DomainNamedElement A named element represents an element with a name.

The following features are supported:

Generated

Method Summary
 java.lang.String getName()
          Returns the value of the 'Name' attribute.
 boolean isStatic()
          Returns the value of the 'Is Static' attribute.
 void setIsStatic(boolean value)
          Sets the value of the 'Is Static' attribute.
 void setName(java.lang.String value)
          Sets the value of the 'Name' attribute.
 
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

getName

java.lang.String getName()
Returns the value of the 'Name' attribute. The name of the NamedElement.

Specified by:
getName in interface Nameable
Returns:
the value of the 'Name' attribute.
See Also:
setName(String), PivotPackage.getNamedElement_Name()
Generated

setName

void setName(java.lang.String value)
Sets the value of the 'Name' attribute.

Parameters:
value - the new value of the 'Name' attribute.
See Also:
getName()
Generated

isStatic

boolean isStatic()
Returns the value of the 'Is Static' attribute.

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

Returns:
the value of the 'Is Static' attribute.
See Also:
setIsStatic(boolean), PivotPackage.getNamedElement_IsStatic()
Generated

setIsStatic

void setIsStatic(boolean value)
Sets the value of the 'Is Static' attribute.

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