Mercurial > hg > RemoteEditor > REPSessionManager
view test/editortest/REPTextEvent.java @ 419:7ff127c8ad64
(no commit message)
author | one |
---|---|
date | Tue, 20 Jan 2009 18:39:02 +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; } }