summaryrefslogtreecommitdiff
path: root/src/main/java/com/benburwell/planes/gui/Tabbable.java
blob: e7b5f3f31f5be8422d559b65ab4f186ea69459bf (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.benburwell.planes.gui;

import javax.swing.*;

/**
 * Created by ben on 11/17/16.
 */
public interface Tabbable {
    String getName();
    JComponent getComponent();
}