view src/de/mpiwg/anteater/text/Paragraph.java @ 0:036535fcd179

anteater
author jdamerow
date Fri, 14 Sep 2012 10:30:43 +0200
parents
children
line wrap: on
line source

package de.mpiwg.anteater.text;

import java.util.List;

public class Paragraph {

	private int paragraphType;
	private String paragraphText = "";
	private List<String> sentences;
	
	public int getParagraphType() {
		return paragraphType;
	}
	public void setParagraphType(int paragraphType) {
		this.paragraphType = paragraphType;
	}
	public String getParagraphText() {
		return paragraphText;
	}
	public void setParagraphText(String paragraphText) {
		this.paragraphText = paragraphText;
	}
	public List<String> getSentences() {
		return sentences;
	}
	public void setSentences(List<String> sentences) {
		this.sentences = sentences;
	}
}