Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.disposition.rest.model/src/org/eclipse/osee/disposition/model/DispoSetDescriptorData.java')
-rw-r--r--plugins/org.eclipse.osee.disposition.rest.model/src/org/eclipse/osee/disposition/model/DispoSetDescriptorData.java17
1 files changed, 13 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.disposition.rest.model/src/org/eclipse/osee/disposition/model/DispoSetDescriptorData.java b/plugins/org.eclipse.osee.disposition.rest.model/src/org/eclipse/osee/disposition/model/DispoSetDescriptorData.java
index 3f1f90170d9..d73c8ff031f 100644
--- a/plugins/org.eclipse.osee.disposition.rest.model/src/org/eclipse/osee/disposition/model/DispoSetDescriptorData.java
+++ b/plugins/org.eclipse.osee.disposition.rest.model/src/org/eclipse/osee/disposition/model/DispoSetDescriptorData.java
@@ -22,21 +22,30 @@ public class DispoSetDescriptorData {
private String name;
private String importPath;
+ private String dispoType;
public String getName() {
return name;
}
- public void setName(String name) {
- this.name = name;
- }
-
public String getImportPath() {
return importPath;
}
+ public String getDispoType() {
+ return dispoType;
+ }
+
public void setImportPath(String importPath) {
this.importPath = importPath;
}
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public void setDispoType(String dispoType) {
+ this.dispoType = dispoType;
+ }
+
} \ No newline at end of file

Back to the top