corpus-services  1.0
ExmaErrorListItem.java
Go to the documentation of this file.
1 
4 package de.uni_hamburg.corpora;
5 
10 public class ExmaErrorListItem {
12  private String fileName;
14  private String tierID;
16  private String eventStart;
18  private boolean done;
20  private String description;
21 
22  public ExmaErrorListItem(String fileName, String tierID, String eventStart, boolean done, String description) {
23  this.fileName = fileName;
24  this.tierID = tierID;
25  this.eventStart = eventStart;
26  this.done = done;
27  this.description = description;
28  }
29 
33  public String getFileName() {
34  return fileName;
35  }
36 
40  public String getTierID() {
41  return tierID;
42  }
43 
47  public String getEventStart() {
48  return eventStart;
49  }
50 
54  public boolean isDone() {
55  return done;
56  }
57 
61  public String getDescription() {
62  return description;
63  }
64 }
ExmaErrorListItem(String fileName, String tierID, String eventStart, boolean done, String description)