Package com.dotmarketing.util.diff.html.modification

Examples of com.dotmarketing.util.diff.html.modification.HtmlLayoutChange


        return getString("diff-" + node.getQName());
       
    }

    public void getRemovedDescription(ChangeText txt) {
      htmlLayoutChange = new HtmlLayoutChange();
      htmlLayoutChange.setEndingTag(node.getEndTag());
      htmlLayoutChange.setOpeningTag(node.getOpeningTag());
      htmlLayoutChange.setType(Type.TAG_REMOVED);
        if (sem == TagChangeSematic.MOVED) {
            txt.addText(getMovedOutOf() + " " + getArticle().toLowerCase()
View Full Code Here


        addAttributes(txt, node.getAttributes());
        txt.addText(".");
    }

    public void getAddedDescription(ChangeText txt) {
      htmlLayoutChange = new HtmlLayoutChange();
      htmlLayoutChange.setEndingTag(node.getEndTag());
      htmlLayoutChange.setOpeningTag(node.getOpeningTag());
      htmlLayoutChange.setType(Type.TAG_ADDED);
        if (sem == TagChangeSematic.MOVED) {
            txt.addText(getMovedTo() + " " + getArticle().toLowerCase() + " ");
View Full Code Here

TOP

Related Classes of com.dotmarketing.util.diff.html.modification.HtmlLayoutChange

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.