Package com.psddev.dari.util

Examples of com.psddev.dari.util.HtmlText


    public void setTitle(String title) {
        if (ObjectUtils.isBlank(title)) {
            removeHeadTag("title");

        } else {
            HtmlText text = new HtmlText();
            List<HtmlNode> children = findOrCreateHeadElement("title").getChildren();

            text.setText(title);
            children.clear();
            children.add(text);
        }

        setMetaProperty("og:title", title);
View Full Code Here

TOP

Related Classes of com.psddev.dari.util.HtmlText

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.