Logo

GitLab

Sign in

nkjp / teiapi

  • Back to Group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • teiapi
  • ..
  • read
  • PtrData.java
  • Initial
    ea923f39
    Mateusz Kopeć authored
    2015-07-09 11:07:33 +0200  
    Browse Code »
PtrData.java 337 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
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;
	}
}