Skip to content

Commit

Permalink
do adders
Browse files Browse the repository at this point in the history
  • Loading branch information
Dert1129 committed Nov 8, 2024
1 parent e35dc35 commit 1a77973
Showing 1 changed file with 54 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,12 @@ public Set<String> getRedcapId() {
}
}

public void addRedCapId(String redcapId){
if(redcapId != null && !redcapId.isEmpty()){
this.redcapId.add(redcapId);
}
}

public void setRedcapId(Set<String> redcapId) {
this.redcapId = redcapId;
}
Expand All @@ -262,6 +268,12 @@ public Set<String> getAge() {
}
}

public void addAge(String age){
if(age != null && !age.isEmpty()){
this.age.add(age);
}
}

public void setAge(Set<String> age) {
this.age = age;
}
Expand All @@ -275,6 +287,12 @@ public Set<String> getProtocol() {
}
}

public void addProtocol(String protocol){
if(protocol != null && !protocol.isEmpty()){
this.protocol.add(protocol);
}
}

public void setProtocol(Set<String> protocol) {
this.protocol = protocol;
}
Expand All @@ -288,6 +306,12 @@ public Set<String> getSampleType() {
}
}

public void addSampleType(String sampleType){
if(sampleType != null && !sampleType.isEmpty()){
this.sampleType.add(sampleType);
}
}

public void setSampleType(Set<String> sampleType) {
this.sampleType = sampleType;
}
Expand All @@ -301,6 +325,12 @@ public Set<String> getSex() {
}
}

public void addSex(String sex){
if(sex != null && !sex.isEmpty()){
this.sex.add(sex);
}
}

public void setSex(Set<String> sex) {
this.sex = sex;
}
Expand All @@ -314,6 +344,12 @@ public Set<String> getTissueSource() {
}
}

public void addTissueSource(String tissueSource){
if(tissueSource != null && tissueSource.isEmpty()){
this.tissueSource.add(tissueSource);
}
}

public void setTissueSource(Set<String> tissueSource) {
this.tissueSource = tissueSource;
}
Expand All @@ -327,6 +363,12 @@ public Set<String> getEnrollmentCategory() {
}
}

public void addEnrollmentCategory(String enrollmentCategory){
if(enrollmentCategory != null && !enrollmentCategory.isEmpty()){
this.enrollmentCategory.add(enrollmentCategory);
}
}

public void setEnrollmentCategory(Set<String> enrollmentCategory) {
this.enrollmentCategory = enrollmentCategory;
}
Expand All @@ -339,6 +381,12 @@ public Set<String> getPrimaryAdjudicatedCategory() {
}
}

public void addPrimaryAdjudicatedCategory(String primaryAdjudicatedCategory){
if(primaryAdjudicatedCategory != null && !primaryAdjudicatedCategory.isEmpty()){
this.primaryAdjudicatedCategory.add(primaryAdjudicatedCategory);
}
}

public void setPrimaryAdjudicatedCategory(Set<String> primaryAdjudicatedCategory) {
this.primaryAdjudicatedCategory = primaryAdjudicatedCategory;
}
Expand All @@ -351,6 +399,12 @@ public Set<String> getKdigoStage() {
}
}

public void addKdigoState(String kdigoStage){
if(kdigoStage != null && kdigoStage.isEmpty()){
this.kdigoStage.add(kdigoStage);
}
}

public void setKdigoStage(Set<String> kdigoStage) {
this.kdigoStage = kdigoStage;
}
Expand Down

0 comments on commit 1a77973

Please sign in to comment.