1 36 package jline; 37 38 39 44 public class UnsupportedTerminal 45 extends Terminal 46 { 47 public void initializeTerminal () 48 { 49 } 51 52 53 public boolean getEcho () 54 { 55 return true; 56 } 57 58 59 62 public int getTerminalWidth () 63 { 64 return 80; 65 } 66 67 68 71 public int getTerminalHeight () 72 { 73 return 80; 74 } 75 76 77 public boolean isSupported () 78 { 79 return false; 80 } 81 } 82 83 | Popular Tags |