Update package comments
[fanfix.git] / src / jexer / backend / ECMA48Backend.java
index 62fae34b609e25647b27f9bce1603d98542298f1..24357bb11841aad529379bd718313d1924c24297 100644 (file)
@@ -3,7 +3,7 @@
  *
  * The MIT License (MIT)
  *
- * Copyright (C) 2016 Kevin Lamonte
+ * Copyright (C) 2017 Kevin Lamonte
  *
  * Permission is hereby granted, free of charge, to any person obtaining a
  * copy of this software and associated documentation files (the "Software"),
@@ -160,4 +160,14 @@ public final class ECMA48Backend extends Backend {
         terminal.shutdown();
     }
 
+    /**
+     * Set the window title.
+     *
+     * @param title the new title
+     */
+    @Override
+    public void setTitle(final String title) {
+        ((ECMA48Screen) screen).setTitle(title);
+    }
+
 }