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

21 lines
674 B
Java
Raw Permalink Normal View History

2020-02-08 22:20:08 +00:00
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 ();
}