You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
273 B
21 lines
273 B
15 years ago
|
/*
|
||
|
* Appendable.java
|
||
|
*
|
||
|
* Created on 16. Mai 2002, 23:23
|
||
|
*/
|
||
|
|
||
|
package org.kde.kjas.server;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author till
|
||
|
*/
|
||
|
public interface Console {
|
||
|
|
||
|
public void clear();
|
||
|
public void append(String text);
|
||
|
|
||
|
public void setVisible(boolean visible);
|
||
|
|
||
|
}
|