TTYSessionInfo
[nikiroo-utils.git] / src / jexer / session / TSessionInfo.java
index a0dc75ccafd7515e99564de45a5273365fc5daaf..1575a6c6fcdf4c6b16a8be01890b596395598862 100644 (file)
@@ -96,6 +96,8 @@ public class TSessionInfo implements SessionInfo {
 
     /**
      * Text window width getter
+     *
+     * @return the window width
      */
     public int getWindowWidth() {
        return windowWidth;
@@ -103,8 +105,18 @@ public class TSessionInfo implements SessionInfo {
 
     /**
      * Text window height getter
+     *
+     * @return the window height
      */
     public int getWindowHeight() {
        return windowHeight;
     }
+
+    /**
+     * Re-query the text window size
+     */
+    public void queryWindowSize() {
+       // NOP
+    }
+
 }