Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/event/model/TransactionEvent.java')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/event/model/TransactionEvent.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/event/model/TransactionEvent.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/event/model/TransactionEvent.java
index 007dfbbec27..ff89defb633 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/event/model/TransactionEvent.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/event/model/TransactionEvent.java
@@ -36,8 +36,12 @@ public class TransactionEvent extends FrameworkEvent {
* <p>
* Objects of the following type(s) are allowed in the list {@link DefaultBasicGuidArtifact }
*/
- public List<TransactionChange> getTransactions() {
- return this.transactions;
+ public List<TransactionChange> getTransactionChanges() {
+ return transactions;
+ }
+
+ public void addTransactionChange(TransactionChange txChange) {
+ transactions.add(txChange);
}
/**

Back to the top