Skip to content

Commit

Permalink
Fixing gml:MeasureType should be an integer in IWXXM issue
Browse files Browse the repository at this point in the history
  • Loading branch information
blchoy committed Nov 11, 2021
1 parent b7a6d27 commit c668a05
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Binary file modified IWXXM-JAVA/net/opengis/gml/MeasureType.class
Binary file not shown.
9 changes: 6 additions & 3 deletions IWXXM-JAVA/net/opengis/gml/MeasureType.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,23 +51,26 @@
public class MeasureType {

@XmlValue
protected double value;
// protected double value;
protected int value;
@XmlAttribute(name = "uom", required = true)
protected String uom;

/**
* Gets the value of the value property.
*
*/
public double getValue() {
// public double getValue() {
public int getValue() {
return value;
}

/**
* Sets the value of the value property.
*
*/
public void setValue(double value) {
// public void setValue(double value) {
public void setValue(int value) {
this.value = value;
}

Expand Down

0 comments on commit c668a05

Please sign in to comment.