Skip to content
Snippets Groups Projects
Commit 83a60045 authored by buczekp's avatar buczekp
Browse files

[LMS-2171] javadoc

SVN: 20837
parent 6eba4148
No related branches found
No related tags found
No related merge requests found
...@@ -19,18 +19,34 @@ package ch.systemsx.cisd.common.io; ...@@ -19,18 +19,34 @@ package ch.systemsx.cisd.common.io;
import java.util.List; import java.util.List;
/** /**
* Abstraction of a tree-like hierarchical content on the filesystem.
*
* @author Chandrasekhar Ramakrishnan * @author Chandrasekhar Ramakrishnan
* @author Piotr Buczek * @author Piotr Buczek
*/ */
public interface IHierarchicalContent public interface IHierarchicalContent
{ {
/** Returns root node. */
IHierarchicalContentNode getRootNode(); IHierarchicalContentNode getRootNode();
/** Returns node with specified relative path starting from root node. */
IHierarchicalContentNode getNode(String relativePath); IHierarchicalContentNode getNode(String relativePath);
/**
* Returns list of all file nodes in this hierarchy with names matching given
* <code>pattern</code>.
* <p>
* NOTE: this operation may be expensive for huge hierarchies
*/
List<IHierarchicalContentNode> listMatchingNodes(String pattern); List<IHierarchicalContentNode> listMatchingNodes(String pattern);
/**
* Like {@link #listMatchingNodes(String)} but search starts from specified relative path.
* <p>
* NOTE: this operation may be expensive for huge hierarchies
*/
List<IHierarchicalContentNode> listMatchingNodes(String startingPath, String pattern); List<IHierarchicalContentNode> listMatchingNodes(String startingPath, String pattern);
/** Cleans resources acquired to access this hierarchical content. */
void close(); void close();
} }
...@@ -26,8 +26,17 @@ import ch.systemsx.cisd.common.utilities.IDelegatedAction; ...@@ -26,8 +26,17 @@ import ch.systemsx.cisd.common.utilities.IDelegatedAction;
*/ */
public interface IHierarchicalContentFactory public interface IHierarchicalContentFactory
{ {
/**
* Returns hierarchy based on given root file.
*
* @param onCloseAction action that will be performed when returned hierarchy is closed
*/
public IHierarchicalContent asHierarchicalContent(File file, IDelegatedAction onCloseAction); public IHierarchicalContent asHierarchicalContent(File file, IDelegatedAction onCloseAction);
/**
* Returns content node for given file. Different implementations may be returned depending on
* e.g. file extension.
*/
public IHierarchicalContentNode asHierarchicalContentNode(IHierarchicalContent rootContent, public IHierarchicalContentNode asHierarchicalContentNode(IHierarchicalContent rootContent,
File file); File file);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment