summaryrefslogtreecommitdiff
path: root/src/main/java/com/benburwell/planes/gui/Tabbable.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/benburwell/planes/gui/Tabbable.java')
-rw-r--r--src/main/java/com/benburwell/planes/gui/Tabbable.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main/java/com/benburwell/planes/gui/Tabbable.java b/src/main/java/com/benburwell/planes/gui/Tabbable.java
new file mode 100644
index 0000000..e7b5f3f
--- /dev/null
+++ b/src/main/java/com/benburwell/planes/gui/Tabbable.java
@@ -0,0 +1,11 @@
+package com.benburwell.planes.gui;
+
+import javax.swing.*;
+
+/**
+ * Created by ben on 11/17/16.
+ */
+public interface Tabbable {
+ String getName();
+ JComponent getComponent();
+}