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

[LMS-2104] minor cleanup and javadoc

SVN: 21322
parent 0a981405
No related branches found
No related tags found
No related merge requests found
......@@ -55,6 +55,14 @@ public interface IHierarchicalContent
*/
List<IHierarchicalContentNode> listMatchingNodes(String startingPath, String fileNamePattern);
/** Cleans resources acquired to access this hierarchical content. */
/**
* Cleans resources (e.g. releases locks) acquired to access this hierarchical content.
* <p>
* For now accessing {@link IHierarchicalContentNode} from a closed content doesn't fail
* immediately but it is unpredictable (e.g. files may no longer be accessible). One shouldn't
* call any methods of {@link IHierarchicalContentNode}-s that were acquired from a content
* which is closed at the time of invocation of the methods. In future version such operations
* will fail immediately.
*/
void close();
}
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