Package org.apache.tapestry.internal.services

Examples of org.apache.tapestry.internal.services.PersistentFieldManagerImpl


            @Inject("infrastructure:MetaDataLocator")
            MetaDataLocator locator,

            Map<String, PersistentFieldStrategy> configuration)
    {
        return new PersistentFieldManagerImpl(locator, configuration);
    }
View Full Code Here


    public static PersistentFieldManager build(@Inject("alias:MetaDataLocator")
    MetaDataLocator locator,

    Map<String, PersistentFieldStrategy> configuration)
    {
        return new PersistentFieldManagerImpl(locator, configuration);
    }
View Full Code Here

    /** A public service since extensions may provide new persistent strategies. */
    public static PersistentFieldManager buildPersistentFieldManager(
            Map<String, PersistentFieldStrategy> configuration)
    {
        return new PersistentFieldManagerImpl(configuration);
    }
View Full Code Here

TOP

Related Classes of org.apache.tapestry.internal.services.PersistentFieldManagerImpl

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.