Package org.gradle.api.resources
Interface ResourceHandler
public interface ResourceHandler
Provides access to resource-specific utility methods, for example factory methods that create various resources.
-
Method Summary
Modifier and TypeMethodDescriptionCreates resource that points to a bzip2 compressed file at the given path.getText()
Returns a factory for creatingTextResource
s from various sources such as strings, files, and archive entries.Creates resource that points to a gzip compressed file at the given path.
-
Method Details
-
gzip
Creates resource that points to a gzip compressed file at the given path. The path is evaluated as perProject.file(Object)
.- Parameters:
path
- The path evaluated as perProject.file(Object)
.
-
bzip2
Creates resource that points to a bzip2 compressed file at the given path. The path is evaluated as perProject.file(Object)
.- Parameters:
path
- The path evaluated as perProject.file(Object)
.
-
getText
TextResourceFactory getText()Returns a factory for creatingTextResource
s from various sources such as strings, files, and archive entries.- Returns:
- a factory for creating
TextResource
s - Since:
- 2.2
-