Uses of Interface
org.peaseplate.internal.ResourceKey

Packages that use ResourceKey
org.peaseplate   
org.peaseplate.internal   
org.peaseplate.internal.chunk   
org.peaseplate.internal.locator   
org.peaseplate.internal.model   
org.peaseplate.internal.resolver   
org.peaseplate.internal.service   
org.peaseplate.internal.template   
org.peaseplate.locator   
org.peaseplate.resolver   
org.peaseplate.service   
 

Uses of ResourceKey in org.peaseplate
 

Methods in org.peaseplate that return types with arguments of type ResourceKey
 java.util.List<ResourceKey> Template.getImportedResourceKeys()
          Returns the imported resource key
 

Methods in org.peaseplate with parameters of type ResourceKey
 void TemplateEngine.render(java.io.Writer writer, java.lang.Object workingObject, ResourceKey key)
          Renders the template specified by the descriptor

The workingObject is just any object or bean, that contains the data that should be integrated in the template.
 void PeasePlateEngine.render(java.io.Writer writer, java.lang.Object workingObject, ResourceKey key)
           
 

Uses of ResourceKey in org.peaseplate.internal
 

Methods in org.peaseplate.internal that return ResourceKey
 ResourceKey ResourceKey.getParent()
          Returns a resource key with the same name and the parent locale If the locale is already null, there is no parent and it returns null.
 

Uses of ResourceKey in org.peaseplate.internal.chunk
 

Methods in org.peaseplate.internal.chunk that return ResourceKey
 ResourceKey ImportChunk.getImportedResourceKey()
           
 

Constructors in org.peaseplate.internal.chunk with parameters of type ResourceKey
ImportChunk(TemplateLocator locator, int line, int column, ResourceKey importedResourceDescriptor)
           
 

Uses of ResourceKey in org.peaseplate.internal.locator
 

Methods in org.peaseplate.internal.locator that return ResourceKey
 ResourceKey InMemoryTemplateLocator.getKey()
           
 

Constructors in org.peaseplate.internal.locator with parameters of type ResourceKey
AbstractClassLoaderLocator(java.net.URL url, java.lang.String resource, ResourceKey key)
          Creates the class loader locator
 

Uses of ResourceKey in org.peaseplate.internal.model
 

Classes in org.peaseplate.internal.model that implement ResourceKey
 class DefaultResourceKey
          The default implementation of the ResourceKey interface.
 

Methods in org.peaseplate.internal.model that return ResourceKey
 ResourceKey DefaultResourceKey.getParent()
           
 

Methods in org.peaseplate.internal.model that return types with arguments of type ResourceKey
 java.util.List<ResourceKey> CompileContext.getImportedResourceKeys()
          Returns an unmodifiable list of imported resource descriptors
 

Methods in org.peaseplate.internal.model with parameters of type ResourceKey
 void CompileContext.addImportedResourceKey(ResourceKey descriptor)
          Adds an imported resource key
 

Uses of ResourceKey in org.peaseplate.internal.resolver
 

Methods in org.peaseplate.internal.resolver with parameters of type ResourceKey
 MessagesLocator ClassLoaderResolver.resolveMessages(TemplateEngine engine, ResourceKey key)
           
 MessagesLocator FileResolver.resolveMessages(TemplateEngine engine, ResourceKey key)
           
 TemplateLocator ClassLoaderResolver.resolveTemplate(TemplateEngine engine, ResourceKey key)
           
 TemplateLocator FileResolver.resolveTemplate(TemplateEngine engine, ResourceKey key)
           
 

Uses of ResourceKey in org.peaseplate.internal.service
 

Methods in org.peaseplate.internal.service with parameters of type ResourceKey
 MessagesLocator DefaultResolverService.getMessages(TemplateEngine engine, ResourceKey key)
           
 Messages DefaultCacheService.getMessages(TemplateEngine engine, ResourceKey key)
           
 TemplateLocator DefaultResolverService.getTemplate(TemplateEngine engine, ResourceKey key)
           
 Template DefaultCacheService.getTemplate(TemplateEngine engine, ResourceKey key)
           
 

Uses of ResourceKey in org.peaseplate.internal.template
 

Methods in org.peaseplate.internal.template that return types with arguments of type ResourceKey
 java.util.List<ResourceKey> ChunkBasedTemplate.getImportedResourceKeys()
           
 

Constructor parameters in org.peaseplate.internal.template with type arguments of type ResourceKey
ChunkBasedTemplate(TemplateEngine engine, TemplateLocator locator, Chunk[] chunks, java.util.List<ResourceKey> importedResourceKeys, java.util.Map<java.lang.String,MacroBlock> macroBlocks)
           
 

Uses of ResourceKey in org.peaseplate.locator
 

Methods in org.peaseplate.locator that return ResourceKey
 ResourceKey AbstractLocator.getKey()
           
 ResourceKey Locator.getKey()
          Returns the key
 

Constructors in org.peaseplate.locator with parameters of type ResourceKey
AbstractLocator(ResourceKey key)
          Create the locator with the specified key
AbstractURLBasedLocator(java.net.URL url, ResourceKey key)
          Creates the URL based locator
 

Uses of ResourceKey in org.peaseplate.resolver
 

Methods in org.peaseplate.resolver with parameters of type ResourceKey
 MessagesLocator Resolver.resolveMessages(TemplateEngine engine, ResourceKey key)
          Resolves the specified messages and returns a MessagesLocator if found or null otherwise
 TemplateLocator Resolver.resolveTemplate(TemplateEngine engine, ResourceKey key)
          Resolves the specified template and returns a TemplateLocator if found or null otherwise.
 

Uses of ResourceKey in org.peaseplate.service
 

Methods in org.peaseplate.service with parameters of type ResourceKey
 Messages CacheService.getMessages(TemplateEngine engine, ResourceKey key)
           
 MessagesLocator ResolverService.getMessages(TemplateEngine engine, ResourceKey key)
          Asks all resolvers for a messages object described by the specified key and returns a locator for the messages if found.
 Template CacheService.getTemplate(TemplateEngine engine, ResourceKey key)
           
 TemplateLocator ResolverService.getTemplate(TemplateEngine engine, ResourceKey key)
          Asks all resolvers for a template described by the specified key and returns a locator for the template if found.
 



Copyright © 2008. All Rights Reserved.