mirror of
https://github.com/dmolony/DiskBrowser.git
synced 2024-11-16 19:08:49 +00:00
20 lines
567 B
Java
20 lines
567 B
Java
|
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 ();
|
||
|
}
|
||
|
|
||
|
// public void addMouseListener (MouseAdapter ma)
|