X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Fbackend%2FBackend.java;h=664dff954f2ba322c06f3e3928dd32c4605ed07e;hb=a2018e9964f6c58742cd1e6dd0a0c63e244a89d6;hp=bb29b578c5387040257e209e4be58a836a6d24d6;hpb=e16dda65585466c8987bd1efd718431450a96605;p=nikiroo-utils.git diff --git a/src/jexer/backend/Backend.java b/src/jexer/backend/Backend.java index bb29b57..664dff9 100644 --- a/src/jexer/backend/Backend.java +++ b/src/jexer/backend/Backend.java @@ -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); + }