Added support for Terminal.cursorStartOfLine() and clearToEndOfLine().

This commit is contained in:
Adam Murdoch
2012-08-04 17:18:16 +10:00
parent ec9d8d7bf8
commit e0c31aa176
7 changed files with 69 additions and 6 deletions

View File

@@ -97,4 +97,14 @@ public class WindowsTerminal extends AbstractTerminal {
public Terminal cursorRight(int count) throws NativeException {
throw new UnsupportedOperationException();
}
@Override
public Terminal cursorStartOfLine() throws NativeException {
throw new UnsupportedOperationException();
}
@Override
public Terminal clearToEndOfLine() throws NativeException {
throw new UnsupportedOperationException();
}
}