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.
|
/*
|
|
* 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);
|
|
|
|
}
|