Interface BBChange

Single change to a building block

interface BBChange {
    getAssociationChanges(): AssociationChange[];
    getAttributeChanges(): AttributeChange[];
    getAuthor(): string;
    getBuildingBlockChanges(): BBFeatureChange[];
    getChangeType(): ModelChangeType;
    getTimestamp(): Date;
}

Methods

  • Get name of change's author

    Returns string

  • Get timestamp of changes

    Returns Date