view test/editortest/REPTextEvent.java @ 484:7420dea70dd7

Direct Merge first try
author one
date Wed, 20 Oct 2010 21:19:24 +0900
parents 267f9748e826
children
line wrap: on
line source

package test.editortest;

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;
	}
}