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

(no commit message)
author one
date Wed, 31 Dec 2008 14:52:45 +0900
parents
children
comparison
equal deleted inserted replaced
416:b7f42fc75a36 417:267f9748e826
1 package test.editortest;
2
3 public class REPTextEvent {
4
5 private int lineno;
6 private String text;
7
8 public REPTextEvent(int lineno, String text) {
9 this.lineno = lineno;
10 this.text = text;
11 }
12
13 public int getLineno(){
14 return lineno;
15 }
16
17 public String getText(){
18 return text;
19 }
20 }