Skip to content

Commit

Permalink
Add missing getters
Browse files Browse the repository at this point in the history
  • Loading branch information
tsantalis committed Jul 31, 2024
1 parent 30f8035 commit f55618b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main/java/gr/uom/java/xmi/diff/UMLAbstractClassDiff.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,14 @@ public List<UMLOperation> getRemovedOperations() {
return removedOperations;
}

public List<UMLEnumConstant> getAddedEnumConstants() {
return addedEnumConstants;
}

public List<UMLEnumConstant> getRemovedEnumConstants() {
return removedEnumConstants;
}

public List<UMLAttribute> getAddedAttributes() {
return addedAttributes;
}
Expand Down

0 comments on commit f55618b

Please sign in to comment.