Interface AssociationChange

interface AssociationChange {
    getAdded(): string[];
    getChangeType(): ModelChangeType;
    getFeaturePersistentName(): string;
    getRelatedElementName(): string;
    getRelationName(): string;
    getRemoved(): string[];
    isMultipleValue(): boolean;
}

Methods

  • Get array of added objects

    Returns string[]

  • Get persistent name of Building Block

    Returns string

  • Get related element name

    Returns string

  • Get persistent name of the relation

    Returns string

  • Get array of removed objects

    Returns string[]

  • Whether the Building Block has multiple values

    Returns boolean