Mercurial > hg > RemoteEditor > REPSessionManager
view test/editortest/REPText.java @ 502:49b689b17d06 default tip
merged TestEditor to REPEditor
author | suika6039 |
---|---|
date | Tue, 21 Dec 2010 18:01:15 +0900 |
parents | b7f42fc75a36 |
children |
line wrap: on
line source
package test.editortest; import java.util.List; public interface REPText { public void insert(int lineno, String text); public String delete(int lineno); public List<String> list(); public void addTextListener(REPTextListener listener); public int size(); public String get(int i); }