diff src/de/mpiwg/anteater/core/TextExtraction.java @ 0:036535fcd179

anteater
author jdamerow
date Fri, 14 Sep 2012 10:30:43 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/de/mpiwg/anteater/core/TextExtraction.java	Fri Sep 14 10:30:43 2012 +0200
@@ -0,0 +1,43 @@
+package de.mpiwg.anteater.core;
+
+public class TextExtraction {
+
+	
+	private int type;
+	private String text;
+	private int textIdx;
+
+	public TextExtraction() {
+		super();
+	}
+
+	public void setType(int type) {
+		this.type = type;
+	}
+
+	public int getType() {
+		return type;
+	}
+
+	public void setText(String text) {
+		this.text = text;
+	}
+
+	/**
+	 * So far this method is not used!
+	 * @return
+	 */
+	@Deprecated
+	public String getText() {
+		return text;
+	}
+
+	public void setTextIdx(int textIdx) {
+		this.textIdx = textIdx;
+	}
+
+	public int getTextIdx() {
+		return textIdx;
+	}
+
+}
\ No newline at end of file