Skip to content

Commit

Permalink
add isSetObservation...
Browse files Browse the repository at this point in the history
  • Loading branch information
CarstenHollmann committed Jul 3, 2020
1 parent 4f5da49 commit 7094870
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,10 @@ public String getObservationStructure() {
return observationStructure;
}

public boolean isSetObservationStructure() {
return (getObservationStructure() != null) && !getObservationStructure().isEmpty();
}

public void setObservationStructure(String observationStructure) {
this.observationStructure = observationStructure;
}
Expand All @@ -177,6 +181,10 @@ public void setObservationEncoding(String observationsEncoding) {
this.observationsEncoding = observationsEncoding;
}

public boolean isSetObservationEncoding() {
return (getObservationEncoding() != null) && !getObservationEncoding().isEmpty();
}

public boolean isSetProcedure() {
return getProcedure() != null;
}
Expand Down

0 comments on commit 7094870

Please sign in to comment.