Package org.dom4j.tree

Examples of org.dom4j.tree.DefaultComment


    public CDATA createCDATA(String text) {
        return new DefaultCDATA(text);
    }

    public Comment createComment(String text) {
        return new DefaultComment(text);
    }
View Full Code Here


/*     */   public CDATA createCDATA(String text) {
/* 164 */     return new DefaultCDATA(text);
/*     */   }
/*     */
/*     */   public Comment createComment(String text) {
/* 168 */     return new DefaultComment(text);
/*     */   }
View Full Code Here

TOP

Related Classes of org.dom4j.tree.DefaultComment

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.