Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordonald.g.dunne2014-04-11 23:22:24 +0000
committerdonald.g.dunne2014-04-22 19:20:23 +0000
commit040fea496b7a84d65e610934f642790f22420077 (patch)
treec71a0ef84e0ed4450e11565ae26f4b08beed814d /plugins/org.eclipse.osee.coverage
parent51a5d09a64684b410a82624dce3645c05a229415 (diff)
downloadorg.eclipse.osee-040fea496b7a84d65e610934f642790f22420077.tar.gz
org.eclipse.osee-040fea496b7a84d65e610934f642790f22420077.tar.xz
org.eclipse.osee-040fea496b7a84d65e610934f642790f22420077.zip
feature[ats_ATS19845]: Rename branchId to branchUuid
Diffstat (limited to 'plugins/org.eclipse.osee.coverage')
-rw-r--r--plugins/org.eclipse.osee.coverage/src/org/eclipse/osee/coverage/internal/vcast/model/VCastBranchData.java8
-rw-r--r--plugins/org.eclipse.osee.coverage/src/org/eclipse/osee/coverage/internal/vcast/model/VCastBranchDataTable.java4
2 files changed, 6 insertions, 6 deletions
diff --git a/plugins/org.eclipse.osee.coverage/src/org/eclipse/osee/coverage/internal/vcast/model/VCastBranchData.java b/plugins/org.eclipse.osee.coverage/src/org/eclipse/osee/coverage/internal/vcast/model/VCastBranchData.java
index f31c3d1b564..3663fa83ae3 100644
--- a/plugins/org.eclipse.osee.coverage/src/org/eclipse/osee/coverage/internal/vcast/model/VCastBranchData.java
+++ b/plugins/org.eclipse.osee.coverage/src/org/eclipse/osee/coverage/internal/vcast/model/VCastBranchData.java
@@ -16,15 +16,15 @@ package org.eclipse.osee.coverage.internal.vcast.model;
public class VCastBranchData {
private final int id;
- private final long branchId;
+ private final long branchUuid;
private final int resultId;
private final int resultLine;
private final Boolean taken;
- public VCastBranchData(int id, long branchId, int resultId, int resultLine, Boolean taken) {
+ public VCastBranchData(int id, long branchUuid, int resultId, int resultLine, Boolean taken) {
super();
this.id = id;
- this.branchId = branchId;
+ this.branchUuid = branchUuid;
this.resultId = resultId;
this.resultLine = resultLine;
this.taken = taken;
@@ -35,7 +35,7 @@ public class VCastBranchData {
}
public long getBranchId() {
- return branchId;
+ return branchUuid;
}
public int getResultId() {
diff --git a/plugins/org.eclipse.osee.coverage/src/org/eclipse/osee/coverage/internal/vcast/model/VCastBranchDataTable.java b/plugins/org.eclipse.osee.coverage/src/org/eclipse/osee/coverage/internal/vcast/model/VCastBranchDataTable.java
index 6840a299fd7..2c1531660be 100644
--- a/plugins/org.eclipse.osee.coverage/src/org/eclipse/osee/coverage/internal/vcast/model/VCastBranchDataTable.java
+++ b/plugins/org.eclipse.osee.coverage/src/org/eclipse/osee/coverage/internal/vcast/model/VCastBranchDataTable.java
@@ -34,10 +34,10 @@ public class VCastBranchDataTable implements VCastTableData<VCastBranchData> {
@Override
public Object[] toRow(VCastBranchData data) {
int id = data.getId();
- Long branchId = data.getBranchId();
+ Long branchUuid = data.getBranchId();
Integer resultId = data.getResultId();
Integer resultLine = data.getResultLine();
Boolean taken = data.getTaken();
- return new Object[] {id, branchId, resultId, resultLine, taken};
+ return new Object[] {id, branchUuid, resultId, resultLine, taken};
}
} \ No newline at end of file

Back to the top