All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jadex.base.gui.filetree.IFileNode Maven / Gradle / Ivy

package jadex.base.gui.filetree;

import jadex.base.gui.asynctree.ITreeNode;

/**
 *  Common interface for all nodes of the file tree
 *  (except the invisible root node).
 *  Provides unified access to local and remote files.
 */
public interface IFileNode extends ITreeNode
{
	/**
	 *  Get the file name.
	 */
	public String	getFileName();
	
	/**
	 *  Get the file path.
	 */
	public String	getFilePath();
	
	/**
	 *  Check if the file is a directory. 
	 */
	public boolean	isDirectory();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy