| org.netbeans.spi.project.CacheDirectoryProvider
All known Subclasses: org.netbeans.spi.project.support.ant.ExtensibleMetadataProviderImpl,
CacheDirectoryProvider | public interface CacheDirectoryProvider (Code) | | Ability for a project to permit other modules to store arbitrary cache
data associated with the project.
See Also: org.netbeans.api.project.Project.getLookup author: Jesse Glick |
Method Summary | |
FileObject | getCacheDirectory() Get a directory in which modules may store disposable cached information
about the project, such as an index of classes it contains. |
getCacheDirectory | FileObject getCacheDirectory() throws IOException(Code) | | Get a directory in which modules may store disposable cached information
about the project, such as an index of classes it contains.
This directory should be considered non-sharable by
org.netbeans.api.queries.SharabilityQuery .
Modules are responsible for preventing name clashes in this directory by
using sufficiently unique names for child files and folders.
a cache directory throws: IOException - if it cannot be created or loaded |
|
|