Show / Hide Table of Contents

Class Literal

The default implementation of the Literal class

Inheritance
object
ModelElement
MetaElement
Literal
Implements
ILiteral
IMetaElement
IModelElement
INotifyPropertyChanged
INotifyPropertyChanging
Inherited Members
MetaElement.Name
MetaElement.Summary
MetaElement.Remarks
MetaElement.IsIdentified
MetaElement.NameChanging
MetaElement.NameChanged
MetaElement.SummaryChanging
MetaElement.SummaryChanged
MetaElement.RemarksChanging
MetaElement.RemarksChanged
MetaElement.OnNameChanging(ValueChangedEventArgs)
MetaElement.OnNameChanged(ValueChangedEventArgs)
MetaElement.OnSummaryChanging(ValueChangedEventArgs)
MetaElement.OnSummaryChanged(ValueChangedEventArgs)
MetaElement.OnRemarksChanging(ValueChangedEventArgs)
MetaElement.OnRemarksChanged(ValueChangedEventArgs)
MetaElement.ToIdentifierString()
ModelElement.Model
ModelElement.Freeze()
ModelElement.Lock()
ModelElement.IsFrozen
ModelElement.IsLocked
ModelElement.Unlock()
ModelElement.TryUnlock()
ModelElement.GetContainerReference(IModelElement, out int)
ModelElement.PropagateNewModel(Model, Model, IModelElement)
ModelElement.OnChildCreated(IModelElement)
ModelElement.Parent
ModelElement.Children
ModelElement.RelativeUri
ModelElement.AbsoluteUri
ModelElement.CreateUriWithFragment(string, bool, IModelElement)
ModelElement.CreateUriFromGlobalIdentifier(string, bool)
ModelElement.PropagateNewId(ValueChangedEventArgs)
ModelElement.EnforceModels
ModelElement.PreferIdentifiers
ModelElement.ToString()
ModelElement.KeyChanged
ModelElement.OnKeyChanged(EventArgs)
ModelElement.Resolve(Uri)
ModelElement.Resolve(string)
ModelElement.GetRelativePathForChild(IModelElement)
ModelElement.GetRelativePathForNonIdentifiedChild(IModelElement)
ModelElement.GetCompositionName(object)
ModelElement.GetModelElementForPathSegment(string)
ModelElement.GetCollectionForFeature(string)
ModelElement.CallOperation(IOperation, object[])
ModelElement.Extensions
ModelElement.GetExtension<T>()
ModelElement.OnPropertyChanged(string, ValueChangedEventArgs, Lazy<ITypedElement>)
ModelElement.OnPropertyChanging(string, ValueChangedEventArgs, Lazy<ITypedElement>)
ModelElement.Delete()
ModelElement.OnDeleting(UriChangedEventArgs)
ModelElement.OnDeleted(UriChangedEventArgs)
ModelElement.PropertyChanged
ModelElement.PropertyChanging
ModelElement.Deleted
ModelElement.Deleting
ModelElement.UriChanged
ModelElement.GetReferencedElement(IReference, int)
ModelElement.SetReferencedElement(IReference, IModelElement)
ModelElement.GetReferencedElements(IReference)
ModelElement.GetAttributeValue(IAttribute, int)
ModelElement.SetAttributeValue(IAttribute, object)
ModelElement.GetAttributeValues(IAttribute)
ModelElement.OnCollectionChanged(string, NotifyCollectionChangedEventArgs, Lazy<ITypedElement>)
ModelElement.OnCollectionChanging(string, NotifyCollectionChangedEventArgs, Lazy<ITypedElement>)
ModelElement.OnBubbledChange(BubbledChangeEventArgs)
ModelElement.BubbledChange
ModelElement.ParentChanged
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
Namespace: NMF.Models.Meta
Assembly: NMF.Models.dll
Syntax
[XmlNamespace("http://nmf.codeplex.com/nmeta/")]
[XmlNamespacePrefix("nmeta")]
[ModelRepresentationClass("http://nmf.codeplex.com/nmeta/#//Literal")]
public class Literal : MetaElement, ILiteral, IMetaElement, IModelElement, INotifyPropertyChanged, INotifyPropertyChanging

Properties

| Edit this page View Source

ClassInstance

Gets the Class model for this type

Declaration
public static IClass ClassInstance { get; }
Property Value
Type Description
IClass
| Edit this page View Source

Enumeration

The Enumeration property

Declaration
[Browsable(false)]
[XmlAttribute(true)]
[XmlOpposite("Literals")]
public IEnumeration Enumeration { get; set; }
Property Value
Type Description
IEnumeration
| Edit this page View Source

ReferencedElements

Gets the referenced model elements of this model element

Declaration
public override IEnumerableExpression<IModelElement> ReferencedElements { get; }
Property Value
Type Description
IEnumerableExpression<IModelElement>
Overrides
ModelElement.ReferencedElements
| Edit this page View Source

Value

The Value property

Declaration
[XmlAttribute(true)]
public int? Value { get; set; }
Property Value
Type Description
int?

Methods

| Edit this page View Source

GetAttributeValue(string, int)

Resolves the given attribute name

Declaration
protected override object GetAttributeValue(string attribute, int index)
Parameters
Type Name Description
string attribute

The requested attribute name

int index

The index of this attribute

Returns
Type Description
object

The attribute value or null if it could not be found

Overrides
MetaElement.GetAttributeValue(string, int)
| Edit this page View Source

GetClass()

Gets the Class for this model element

Declaration
public override IClass GetClass()
Returns
Type Description
IClass
Overrides
MetaElement.GetClass()
| Edit this page View Source

GetExpressionForAttribute(string)

Gets the property expression for the given attribute

Declaration
protected override INotifyExpression<object> GetExpressionForAttribute(string attribute)
Parameters
Type Name Description
string attribute

The requested attribute in upper case

Returns
Type Description
INotifyExpression<object>

An incremental property expression

Overrides
MetaElement.GetExpressionForAttribute(string)
| Edit this page View Source

GetExpressionForReference(string)

Gets the property expression for the given reference

Declaration
protected override INotifyExpression<IModelElement> GetExpressionForReference(string reference)
Parameters
Type Name Description
string reference

The requested reference in upper case

Returns
Type Description
INotifyExpression<IModelElement>

An incremental property expression

Overrides
ModelElement.GetExpressionForReference(string)
| Edit this page View Source

GetModelElementForReference(string, int)

Resolves the given URI to a child model element

Declaration
protected override IModelElement GetModelElementForReference(string reference, int index)
Parameters
Type Name Description
string reference

The requested reference name

int index

The index of this reference

Returns
Type Description
IModelElement

The model element or null if it could not be found

Overrides
ModelElement.GetModelElementForReference(string, int)
| Edit this page View Source

OnEnumerationChanged(ValueChangedEventArgs)

Raises the EnumerationChanged event

Declaration
protected virtual void OnEnumerationChanged(ValueChangedEventArgs eventArgs)
Parameters
Type Name Description
ValueChangedEventArgs eventArgs

The event data

| Edit this page View Source

OnEnumerationChanging(ValueChangedEventArgs)

Raises the EnumerationChanging event

Declaration
protected virtual void OnEnumerationChanging(ValueChangedEventArgs eventArgs)
Parameters
Type Name Description
ValueChangedEventArgs eventArgs

The event data

| Edit this page View Source

OnParentChanged(IModelElement, IModelElement)

Gets called when the parent model element of the current model element changes

Declaration
protected override void OnParentChanged(IModelElement newParent, IModelElement oldParent)
Parameters
Type Name Description
IModelElement newParent

The new parent model element

IModelElement oldParent

The old parent model element

Overrides
ModelElement.OnParentChanged(IModelElement, IModelElement)
| Edit this page View Source

OnParentChanging(IModelElement, IModelElement)

Gets called when the parent model element of the current model element is about to change

Declaration
protected override void OnParentChanging(IModelElement newParent, IModelElement oldParent)
Parameters
Type Name Description
IModelElement newParent

The new parent model element

IModelElement oldParent

The old parent model element

Overrides
ModelElement.OnParentChanging(IModelElement, IModelElement)
| Edit this page View Source

OnValueChanged(ValueChangedEventArgs)

Raises the ValueChanged event

Declaration
protected virtual void OnValueChanged(ValueChangedEventArgs eventArgs)
Parameters
Type Name Description
ValueChangedEventArgs eventArgs

The event data

| Edit this page View Source

OnValueChanging(ValueChangedEventArgs)

Raises the ValueChanging event

Declaration
protected virtual void OnValueChanging(ValueChangedEventArgs eventArgs)
Parameters
Type Name Description
ValueChangedEventArgs eventArgs

The event data

| Edit this page View Source

SetFeature(string, object)

Sets a value to the given feature

Declaration
protected override void SetFeature(string feature, object value)
Parameters
Type Name Description
string feature

The requested feature

object value

The value that should be set to that feature

Overrides
MetaElement.SetFeature(string, object)

Events

| Edit this page View Source

EnumerationChanged

Gets fired when the Enumeration property changed its value

Declaration
public event EventHandler<ValueChangedEventArgs> EnumerationChanged
Event Type
Type Description
EventHandler<ValueChangedEventArgs>
| Edit this page View Source

EnumerationChanging

Gets fired before the Enumeration property changes its value

Declaration
public event EventHandler<ValueChangedEventArgs> EnumerationChanging
Event Type
Type Description
EventHandler<ValueChangedEventArgs>
| Edit this page View Source

ValueChanged

Gets fired when the Value property changed its value

Declaration
public event EventHandler<ValueChangedEventArgs> ValueChanged
Event Type
Type Description
EventHandler<ValueChangedEventArgs>
| Edit this page View Source

ValueChanging

Gets fired before the Value property changes its value

Declaration
public event EventHandler<ValueChangedEventArgs> ValueChanging
Event Type
Type Description
EventHandler<ValueChangedEventArgs>

Implements

ILiteral
IMetaElement
IModelElement
INotifyPropertyChanged
INotifyPropertyChanging

Extension Methods

ModelExtensions.AncestorTree(IModelElement)
ModelExtensions.Ancestors(IModelElement)
ModelExtensions.Descendants(IModelElement)
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX