view test/editortest/REPText.java @ 414:784a4d67e6a5

(no commit message)
author one
date Tue, 09 Dec 2008 15:44:28 +0900
parents
children b7f42fc75a36
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, String text);

	public List<String> list();

}