Uses of Class
com.bc.ceres.resource.Resource
-
Packages that use Resource Package Description com.bc.ceres.metadata com.bc.ceres.resource -
-
Uses of Resource in com.bc.ceres.metadata
Methods in com.bc.ceres.metadata that return Resource Modifier and Type Method Description ResourceMetadataResourceEngine. readResource(String name, String path)Reads the resource with the given path and stores its content in the velocity context using the given key. -
Uses of Resource in com.bc.ceres.resource
Subclasses of Resource in com.bc.ceres.resource Modifier and Type Class Description classFileResourceA [@link Resource} reading its content from a @{link File}.classReaderResourceA [@link Resource} reading its content from a @{link Reader}.classStringResourceA [@link Resource} reading its content from a @{link String}.Methods in com.bc.ceres.resource that return Resource Modifier and Type Method Description ResourceResource. getOrigin()ResourceResourceEngine. getResource(String name)Retrieves a resource registered under the given name in theVelocityContext.ResourceResourceEngine. processAndAddResource(String name, Resource resource)Evaluates the givenResourceusing the currentVelocityContextand adds the result of this processing to theVelocityContextunder given name.ResourceResourceEngine. processResource(Resource resource)Evaluates the givenResourceusing the currentVelocityContextand return the result.Methods in com.bc.ceres.resource with parameters of type Resource Modifier and Type Method Description ResourceResourceEngine. processAndAddResource(String name, Resource resource)Evaluates the givenResourceusing the currentVelocityContextand adds the result of this processing to theVelocityContextunder given name.ResourceResourceEngine. processResource(Resource resource)Evaluates the givenResourceusing the currentVelocityContextand return the result.Constructors in com.bc.ceres.resource with parameters of type Resource Constructor Description FileResource(String path, Resource origin)Resource(String path, Resource origin)Creates aResourceobject for the given path.StringResource(String path, String stringContent, Resource origin)
-