Skip to content

Commit

Permalink
Added missing Field getters/setters (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentmarinelli-wk authored Sep 4, 2023
1 parent 25f931c commit 69415a1
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/main/java/io/frictionlessdata/tableschema/field/Field.java
Original file line number Diff line number Diff line change
Expand Up @@ -551,14 +551,26 @@ public String getTitle(){
return this.title;
}

public void setTitle(String title) {
this.title = title;
}

public String getDescription(){
return this.description;
}

public void setDescription(String description) {
this.description = description;
}

public Map<String, Object> getConstraints(){
return this.constraints;
}

public void setConstraints(Map<String, Object> constraints) {
this.constraints = constraints;
}

public URI getRdfType() {
return rdfType;
}
Expand Down

0 comments on commit 69415a1

Please sign in to comment.