Interface IGeneralization
The public interface for Generalization
[DefaultImplementationType(typeof(Generalization))]
[XmlDefaultImplementationType(typeof(Generalization))]
[ModelRepresentationClass("http://www.eclipse.org/uml2/5.0.0/UML#//Generalization")]
public interface IGeneralization : IDirectedRelationship, IRelationship, IElement, IEModelElement, IModelElement, INotifyPropertyChanged, INotifyPropertyChanging
- Inherited Members
Properties
General
The general classifier in the Generalization relationship. <p>From package UML::Classification.</p>
[XmlElementName("general")]
[XmlAttribute(true)]
IClassifier General { get; set; }
Property Value
GeneralizationSet
Represents a set of instances of Generalization. A Generalization may appear in many GeneralizationSets. <p>From package UML::Classification.</p>
[XmlElementName("generalizationSet")]
[XmlAttribute(true)]
[XmlOpposite("generalization")]
ISetExpression<IGeneralizationSet> GeneralizationSet { get; }
Property Value
IsSubstitutable
Indicates whether the specific Classifier can be used wherever the general Classifier can be used. If true, the execution traces of the specific Classifier shall be a superset of the execution traces of the general Classifier. If false, there is no such constraint on execution traces. If unset, the modeler has not stated whether there is such a constraint or not. <p>From package UML::Classification.</p>
[XmlElementName("isSubstitutable")]
[XmlAttribute(true)]
bool? IsSubstitutable { get; set; }
Property Value
- bool?
Specific
The specializing Classifier in the Generalization relationship. <p>From package UML::Classification.</p>
[Browsable(false)]
[XmlElementName("specific")]
[XmlAttribute(true)]
[XmlOpposite("generalization")]
IClassifier Specific { get; set; }