1 /*
2  * Copyright (c) 2017 Helmut Neemann
3  * Use of this source code is governed by the GPL v3 license
4  * that can be found in the LICENSE file.
5  */
6 package de.neemann.gui;
7 
8 /**
9  * Provides a dynamic tool tip
10  */
11 public interface ToolTipProvider {
12     /**
13      * @return the tooltip
14      */
getToolTip()15     String getToolTip();
16 }
17