Package com.tapestry5book.tlog.core.services

Examples of com.tapestry5book.tlog.core.services.SkinResources


    public Set<Skin> getSkins() {
        return skinManager.getAvailableSkins();
    }

    public Asset getCurrentPreview() {
        SkinResources resources = skinManager.getSkinResources(currentSkin);

        Resource preview = resources.getPreview();

        return assetSource.getUnlocalizedAsset(preview.getPath());
    }
View Full Code Here


    @Inject
    private SkinManager skinManager;


    public Resource getSkin() {
        SkinResources resources = skinManager.getSkinResources(blog.getSkin());

        return resources.getTemplate();
    }
View Full Code Here

TOP

Related Classes of com.tapestry5book.tlog.core.services.SkinResources

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.