Add versioned about box, set title
[fanfix.git] / src / jexer / backend / Backend.java
index bb29b578c5387040257e209e4be58a836a6d24d6..dbc7c973359ba6c2a0b2eed7579465eb55d3bbe9 100644 (file)
@@ -89,4 +89,11 @@ public abstract class Backend {
      */
     public abstract void shutdown();
 
+    /**
+     * Subclasses must provide an implementation that sets the window title.
+     *
+     * @param title the new title
+     */
+    public abstract void setTitle(final String title);
+
 }