Initial commit.

This commit is contained in:
Ryan Michela
2013-11-13 23:17:51 -08:00
parent 101b7eb972
commit e98113397d
18 changed files with 1284 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package com.ryanmichela.sshd;
import org.bukkit.craftbukkit.libs.jline.TerminalSupport;
/**
* Copyright 2013 Ryan Michela
*/
public class SshTerminal extends TerminalSupport {
protected SshTerminal() {
super(true);
}
@Override
public void init() throws Exception {
setAnsiSupported(true);
setEchoEnabled(true);
}
}