Update copyright to 2017
[nikiroo-utils.git] / src / jexer / backend / Backend.java
index bb29b578c5387040257e209e4be58a836a6d24d6..664dff954f2ba322c06f3e3928dd32c4605ed07e 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"),
@@ -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);
+
 }