1 package com.loribel.commons.abstraction;
2
3 import javax.swing.*;
4
5 /***
6 * Interface to manage focus on a specific component in a container.
7 */
8 public interface GB_FocusComponentOwner
9 {
10
11 /***
12 * Returns the component to set focus.
13 */
14 JComponent getFocusComponent();
15
16 }