diff test/editortest/REPTextEvent.java @ 417:267f9748e826

(no commit message)
author one
date Wed, 31 Dec 2008 14:52:45 +0900
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test/editortest/REPTextEvent.java	Wed Dec 31 14:52:45 2008 +0900
@@ -0,0 +1,20 @@
+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;
+	}
+}