Package org.apache.tapestry5.ioc.internal.util

Examples of org.apache.tapestry5.ioc.internal.util.URLChangeTracker


        ClassPath path = new LoaderClassPath(loader);

        classPool.appendClassPath(path);

        classSource = new CtClassSourceImpl(classPool, loader);

        try
        {
            loader.addTranslator(classPool, this);
        }
View Full Code Here


    public ComponentMessagesSourceImpl(@Symbol(SymbolConstants.PRODUCTION_MODE)
    boolean productionMode, List<Resource> appCatalogResources, PropertiesFileParser parser,
            ComponentResourceLocator resourceLocator, ClasspathURLConverter classpathURLConverter)
    {
        this(productionMode, appCatalogResources, resourceLocator, parser, new URLChangeTracker(classpathURLConverter));
    }
View Full Code Here

    {
        this.parent = proxyFactory.getClassLoader();
        this.transformerChain = transformerChain;
        this.logger = logger;
        this.loggerSource = loggerSource;
        this.changeTracker = new URLChangeTracker(classpathURLConverter);
        this.tracker = tracker;
        this.invalidationHub = invalidationHub;
        this.productionMode = productionMode;
        this.resolver = resolver;
View Full Code Here

    {
        this.bindingSource = bindingSource;
        this.pageSource = pageSource;
        this.componentTemplateParser = componentTemplateParser;

        tracker = new URLChangeTracker(converter);
    }
View Full Code Here

    public ComponentTemplateSourceImpl(@Inject
    @Symbol(SymbolConstants.PRODUCTION_MODE)
    boolean productionMode, TemplateParser parser, ComponentResourceLocator locator,
            ClasspathURLConverter classpathURLConverter)
    {
        this(productionMode, parser, locator, new URLChangeTracker(classpathURLConverter));
    }
View Full Code Here

        super(productionMode);

        // Use granularity of seconds (not milliseconds) since that works properly
        // with response headers for identifying last modified. Don't track
        // folder changes, just changes to actual files.
        tracker = productionMode ? null : new URLChangeTracker(classpathURLConverter, true, false);
    }
View Full Code Here

    {
        this.parent = proxyFactory.getClassLoader();
        this.transformerChain = transformerChain;
        this.logger = logger;
        this.loggerSource = loggerSource;
        this.changeTracker = new URLChangeTracker(classpathURLConverter);
        this.tracker = tracker;
        this.invalidationHub = invalidationHub;
        this.productionMode = productionMode;
        this.resolver = resolver;
View Full Code Here

        this.parent = proxyFactory.getClassLoader();
        this.transformerChain = transformerChain;
        this.logger = logger;
        this.loggerSource = loggerSource;
        this.internalRequestGlobals = internalRequestGlobals;
        this.changeTracker = new URLChangeTracker(classpathURLConverter);
        this.tracker = tracker;
        this.invalidationHub = invalidationHub;
        this.productionMode = productionMode;
        this.resolver = resolver;
View Full Code Here

    public DynamicTemplateParserImpl(ClasspathURLConverter converter, BindingSource bindingSource, PageSource pageSource)
    {
        this.bindingSource = bindingSource;
        this.pageSource = pageSource;

        tracker = new URLChangeTracker(converter);
    }
View Full Code Here

        super(productionMode);
       
        // Use granularity of seconds (not milliseconds) since that works properly
        // with response headers for identifying last modified. Don't track
        // folder changes, just changes to actual files.
        tracker = new URLChangeTracker(classpathURLConverter, true, false);
    }
View Full Code Here

TOP

Related Classes of org.apache.tapestry5.ioc.internal.util.URLChangeTracker

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.