Examples of SkinResources


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

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

    @Inject
    private SkinManager skinManager;


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

        return resources.getTemplate();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.