dmolony-DiskBrowser/src/com/bytezone/diskbrowser/gui/Tab.java
2019-10-21 17:30:27 +10:00

19 lines
514 B
Java
Executable File

package com.bytezone.diskbrowser.gui;
/***********************************************************************************************
* Interface implemented by AbstractTab, and in turn FileSystemTab and AppleDiskTab.
*
*
***********************************************************************************************/
import javax.swing.tree.DefaultMutableTreeNode;
interface Tab
{
public void refresh ();
public void activate ();
public DefaultMutableTreeNode getRootNode ();
}