view src/de/mpiwg/anteater/ml/impl/Word.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.ml.impl;

public class Word {

	private String word;
	private int index;
	private boolean isPassive;
	
	public void setWord(String word) {
		this.word = word;
	}
	public String getWord() {
		return word;
	}
	public void setIndex(int index) {
		this.index = index;
	}
	public int getIndex() {
		return index;
	}
	public void setPassive(boolean isPassive) {
		this.isPassive = isPassive;
	}
	public boolean isPassive() {
		return isPassive;
	}
	
	
}