Interface IMultiplicityElement
Defines the Multiplicity of an Element and how many elements can be contained.
Inherited Members
Namespace:System.Dynamic.ExpandoObject
Assembly:SilvaDawn.SilvaModel.UML.Interfaces.dll
Syntax
public interface IMultiplicityElement : IElement, IElementsObservable
Properties
IsOrdered
If the elements can be ordered
Declaration
bool IsOrdered { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsUnique
If each element is unique
Declaration
bool IsUnique { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
LowerValue
Gets the minimum amount of elements allowed. Can be 0 or 1
Declaration
IValueSpecification LowerValue { get; }
Property Value
Type | Description |
---|---|
IValueSpecification |
UpperValue
Get the maximum number of elements allowed. Can be 1 or *(unlimited)
Declaration
IValueSpecification UpperValue { get; }
Property Value
Type | Description |
---|---|
IValueSpecification |