PtrData.java
337 Bytes
package ipipan.clarin.tei.impl.io.read;
/**
*
* @author mlenart
*/
class PtrData {
private final String where;
private final String refId;
public PtrData(String where, String refId) {
this.where = where;
this.refId = refId;
}
public String getWhere() {
return where;
}
public String getRefId() {
return refId;
}
}