TTYSessionInfo
[fanfix.git] / src / jexer / session / SessionInfo.java
index 0c1063705bf3a6c3284089cc030062f276da7c76..340ffd3d2aa9a11aca6bf2ddd58d09d377f593fa 100644 (file)
@@ -68,11 +68,20 @@ public interface SessionInfo {
 
     /**
      * Text window width getter
+     *
+     * @return the window width
      */
     public int getWindowWidth();
 
     /**
      * Text window height getter
+     *
+     * @return the window height
      */
     public int getWindowHeight();
+
+    /**
+     * Re-query the text window size
+     */
+    public void queryWindowSize();
 }