view src/remoteeditor/editors/REPTextEvent.java @ 193:3133040ee4f4

(no commit message)
author one
date Wed, 31 Dec 2008 15:06:22 +0900
parents
children
line wrap: on
line source

package remoteeditor.editors;

public class REPTextEvent {

	private int lineno;
	private String text;

	public REPTextEvent(int lineno, String text) {
		this.lineno = lineno;
		this.text = text;
	}
	
	public int getLineno(){
		return lineno;
	}
	
	public String getText(){
		return text;
	}
}