dmolony-DiskBrowser/src/com/bytezone/diskbrowser/catalog/CatalogLister.java

12 lines
253 B
Java
Raw Normal View History

2015-06-01 09:35:51 +00:00
package com.bytezone.diskbrowser.catalog;
import javax.swing.tree.DefaultMutableTreeNode;
public interface CatalogLister
{
public void setNode (DefaultMutableTreeNode node);
public void createCatalog ();
public String getMenuText ();
}