Class AssociationSet<T>
Denotes a set to store associated elements
Inheritance
AssociationSet<T>
Assembly: NMF.Models.dll
Syntax
public class AssociationSet<T> : DecoratedSet<T>, ISet<T>, ICollection<T>, IEnumerable<T>, IList, ICollection, IEnumerable where T : class, IModelElement
Type Parameters
Methods
|
Edit this page
View Source
Add(T)
Declaration
public override bool Add(T item)
Parameters
Type |
Name |
Description |
T |
item |
|
Returns
Overrides
NMF.Collections.Generic.DecoratedSet<T>.Add(T)
|
Edit this page
View Source
Clear()
Declaration
public override void Clear()
Overrides
NMF.Collections.Generic.DecoratedSet<T>.Clear()
|
Edit this page
View Source
Remove(T)
Declaration
public override bool Remove(T item)
Parameters
Type |
Name |
Description |
T |
item |
|
Returns
Overrides
NMF.Collections.Generic.DecoratedSet<T>.Remove(T)
Implements