Skip to content

Commit 69415a1

Browse files
Added missing Field getters/setters (#82)
1 parent 25f931c commit 69415a1

File tree

1 file changed

+12
-0
lines changed
  • src/main/java/io/frictionlessdata/tableschema/field

1 file changed

+12
-0
lines changed

src/main/java/io/frictionlessdata/tableschema/field/Field.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -551,14 +551,26 @@ public String getTitle(){
551551
return this.title;
552552
}
553553

554+
public void setTitle(String title) {
555+
this.title = title;
556+
}
557+
554558
public String getDescription(){
555559
return this.description;
556560
}
557561

562+
public void setDescription(String description) {
563+
this.description = description;
564+
}
565+
558566
public Map<String, Object> getConstraints(){
559567
return this.constraints;
560568
}
561569

570+
public void setConstraints(Map<String, Object> constraints) {
571+
this.constraints = constraints;
572+
}
573+
562574
public URI getRdfType() {
563575
return rdfType;
564576
}

0 commit comments

Comments
 (0)