1 package org.cyberiantiger.console;
2
3 public abstract class AbstractConsoleAction implements ConsoleAction {
4
5 public boolean isEndOfLine() {
6 return false;
7 }
8
9 public void appendToBuffer(StringBuffer buffer) {
10 }
11
12 }
This page was automatically generated by Maven