jpaoletti.jpm.core.PMChatLog Maven / Gradle / Ivy
The newest version!
package jpaoletti.jpm.core;
import java.util.ArrayList;
import java.util.List;
import java.util.Observable;
/**
*
* @author jpaoletti
*/
public class PMChatLog extends Observable {
private List lines;
public PMChatLog() {
this.lines = new ArrayList();
}
public void println(final String line){
lines.add(line);
notifyObservers();
}
public List getLines() {
return lines;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy