dmolony-DiskBrowser/src/com/bytezone/diskbrowser/gui/Tab.java

19 lines
514 B
Java
Raw Normal View History

2015-06-01 09:35:51 +00:00
package com.bytezone.diskbrowser.gui;
/***********************************************************************************************
* Interface implemented by AbstractTab, and in turn FileSystemTab and AppleDiskTab.
2019-10-21 07:30:27 +00:00
*
*
2015-06-01 09:35:51 +00:00
***********************************************************************************************/
import javax.swing.tree.DefaultMutableTreeNode;
interface Tab
{
public void refresh ();
public void activate ();
public DefaultMutableTreeNode getRootNode ();
}