Uses of Interface
ro.isdc.wro.model.resource.processor.ResourcePostProcessor

Packages that use ResourcePostProcessor
ro.isdc.wro.manager.factory   
ro.isdc.wro.manager.factory.standalone   
ro.isdc.wro.model.group.processor   
ro.isdc.wro.model.resource.processor   
ro.isdc.wro.model.resource.processor.factory   
ro.isdc.wro.model.resource.processor.impl   
ro.isdc.wro.model.resource.processor.impl.css   
ro.isdc.wro.model.resource.processor.impl.js   
ro.isdc.wro.util   
 

Uses of ResourcePostProcessor in ro.isdc.wro.manager.factory
 

Method parameters in ro.isdc.wro.manager.factory with type arguments of type ResourcePostProcessor
protected  void ConfigurableWroManagerFactory.contributePostProcessors(Map<String,ResourcePostProcessor> map)
          Allow subclasses to contribute with it's own processors.
 

Uses of ResourcePostProcessor in ro.isdc.wro.manager.factory.standalone
 

Methods in ro.isdc.wro.manager.factory.standalone that return types with arguments of type ResourcePostProcessor
protected  Map<String,ResourcePostProcessor> ConfigurableStandaloneContextAwareManagerFactory.createPostProcessorsMap()
           
 

Uses of ResourcePostProcessor in ro.isdc.wro.model.group.processor
 

Methods in ro.isdc.wro.model.group.processor that return types with arguments of type ResourcePostProcessor
 Collection<ResourcePostProcessor> ProcessorsFactoryDecorator.getPostProcessors()
          
 Collection<ResourcePostProcessor> InjectorProcessorsFactoryDecorator.getPostProcessors()
          
 

Uses of ResourcePostProcessor in ro.isdc.wro.model.resource.processor
 

Methods in ro.isdc.wro.model.resource.processor that return ResourcePostProcessor
static ResourcePostProcessor ProcessorsUtils.toPostProcessor(ResourcePreProcessor preProcessor)
          Transforms a preProcessor into a postProcessor.
 

Methods in ro.isdc.wro.model.resource.processor that return types with arguments of type ResourcePostProcessor
static Map<String,ResourcePostProcessor> ProcessorsUtils.createPostProcessorsMap()
           
 

Methods in ro.isdc.wro.model.resource.processor with parameters of type ResourcePostProcessor
static ResourcePreProcessor ProcessorsUtils.toPreProcessor(ResourcePostProcessor postProcessor)
          Transforms a postProcessor into a preProcessor.
 

Uses of ResourcePostProcessor in ro.isdc.wro.model.resource.processor.factory
 

Methods in ro.isdc.wro.model.resource.processor.factory that return types with arguments of type ResourcePostProcessor
 Collection<ResourcePostProcessor> SimpleProcessorsFactory.getPostProcessors()
          
 Collection<ResourcePostProcessor> ProcessorsFactory.getPostProcessors()
           
 Collection<ResourcePostProcessor> ConfigurableProcessorsFactory.getPostProcessors()
          
 Map<String,ResourcePostProcessor> ConfigurableProcessorsFactory.newPostProcessorsMap()
           
 

Methods in ro.isdc.wro.model.resource.processor.factory with parameters of type ResourcePostProcessor
 SimpleProcessorsFactory SimpleProcessorsFactory.addPostProcessor(ResourcePostProcessor processor)
          Add a ResourcePostProcessor.
 

Method parameters in ro.isdc.wro.model.resource.processor.factory with type arguments of type ResourcePostProcessor
 ConfigurableProcessorsFactory ConfigurableProcessorsFactory.setPostProcessorsMap(Map<String,ResourcePostProcessor> map)
           
 void SimpleProcessorsFactory.setResourcePostProcessors(Collection<ResourcePostProcessor> processors)
          
 

Uses of ResourcePostProcessor in ro.isdc.wro.model.resource.processor.impl
 

Classes in ro.isdc.wro.model.resource.processor.impl that implement ResourcePostProcessor
 class AbstractProcessorDecorator
          Hides details common to all processors decorators.
 class CommentStripperProcessor
          CommentStripperProcessor.
 class CopyrightKeeperProcessorDecorator
          Inspects the resource for copyright (licence) header and inserts them back if the decorated processor removes them.
 class ExtensionsAwareProcessorDecorator
          Enforce decorated processors to be applied only on predefined extension.
 class MultiLineCommentStripperProcessor
          Removes multi line comments from processed resource.
 class PlaceholderProcessor
          A processor which parse a resource and search for placeholders of this type: ${} and replace them with the values found in a map provided the by client.
 class SingleLineCommentStripperProcessor
          SingleLineCommentStripperProcessor can be both: preProcessor & postProcessor.
 

Constructors in ro.isdc.wro.model.resource.processor.impl with parameters of type ResourcePostProcessor
AbstractProcessorDecorator(ResourcePostProcessor postProcessor)
           
 

Uses of ResourcePostProcessor in ro.isdc.wro.model.resource.processor.impl.css
 

Classes in ro.isdc.wro.model.resource.processor.impl.css that implement ResourcePostProcessor
 class AbstractCssUrlRewritingProcessor
          A processor responsible for rewriting url's from inside the css resources.
 class ConformColorsCssProcessor
          A processor which transform all colors to #rgb format.
 class CssCompressorProcessor
          A processor implementation using CssCompressor algorithm.
 class CssDataUriPreProcessor
          Rewrites background images by replacing the url with data uri of the image.
 class CssMinProcessor
          A processor implementation using CSSMin algorithm.
 class CssUrlRewritingProcessor
          CssUrlRewritingProcessor.
The algorithm requires two types of UriLocator objects, one for resolving url resources & one for classpathresources.
 class CssVariablesProcessor
          Processor of css resources, responsible for replacing variables.
 class DuplicatesAwareCssDataUriPreProcessor
          Similar to CssDataUriPreProcessor which instead of replacing a url blindly with dataUri, is is smart enough to detect duplicated image url and avoid replacing it with dataUri.
 class JawrCssMinifierProcessor
          A processor implementation using JawrCssMinifier algorithm.
 class VariablizeColorsCssProcessor
           
 

Uses of ResourcePostProcessor in ro.isdc.wro.model.resource.processor.impl.js
 

Classes in ro.isdc.wro.model.resource.processor.impl.js that implement ResourcePostProcessor
 class JSMinProcessor
          Use JSMin utility for js compression.
 

Uses of ResourcePostProcessor in ro.isdc.wro.util
 

Methods in ro.isdc.wro.util that return ResourcePostProcessor
static ResourcePostProcessor WroUtil.newResourceProcessor(Resource resource, ResourcePreProcessor preProcessor)
          A factory method for creating a ResourceProcessor based on provided ResourcePreProcessor.
 

Methods in ro.isdc.wro.util with parameters of type ResourcePostProcessor
static void WroTestUtils.compare(InputStream input, InputStream expected, ResourcePostProcessor processor)
           
static void WroTestUtils.compare(Reader resultReader, Reader expectedReader, ResourcePostProcessor processor)
          Compare contents of two resources (files) by performing some sort of processing on input resource.
static void WroTestUtils.compareFromDifferentFolders(File sourceFolder, File targetFolder, org.apache.commons.io.filefilter.IOFileFilter fileFilter, ResourcePostProcessor processor)
          Process and compare the files which a located in different folders.
static void WroTestUtils.compareFromDifferentFolders(File sourceFolder, File targetFolder, org.apache.commons.io.filefilter.IOFileFilter fileFilter, Transformer<String> toTargetFileName, ResourcePostProcessor processor)
           
static void WroTestUtils.compareFromDifferentFolders(File sourceFolder, File targetFolder, ResourcePostProcessor processor)
           
static void WroTestUtils.compareFromDifferentFoldersByExtension(File sourceFolder, File targetFolder, String extension, ResourcePostProcessor processor)
          TODO run tests in parallel
static void WroTestUtils.compareFromSameFolder(File sourceFolder, org.apache.commons.io.filefilter.IOFileFilter sourceFileFilter, Transformer<String> toTargetFileName, ResourcePostProcessor processor)
          Process and compare files from the same folder.
static void WroTestUtils.compareProcessedResourceContents(String inputResourceUri, String expectedContentResourceUri, ResourcePostProcessor processor)
          Compare contents of two resources (files) by performing some sort of processing on input resource.
static void WroTestUtils.compareSameFolderByExtension(File sourceFolder, String sourceFileExtension, String targetFileExtension, ResourcePostProcessor processor)
          Process and compare files from the same folder.
static void WroTestUtils.compareSameFolderByExtension(File sourceFolder, String sourceFileExtension, Transformer<String> toTargetFileName, ResourcePostProcessor processor)
           
static void WroTestUtils.initProcessor(ResourcePostProcessor processor)
           
 



Copyright © 2008-2011. All Rights Reserved.