1 package org.glassbox.gui;
2
3 import javax.swing.JComponent;
4
5 /***
6 Interface for something visible.
7 */
8 public interface Visible {
9 /***
10 Get the view of this visible.
11 */
12 JComponent getView();
13 }