org.xmlpull.v1.builder.XmlComment Maven / Gradle / Ivy
package org.xmlpull.v1.builder;
/**
* Represents
* Comment Information Item.
*
*
* @version $Revision: 1.1 $
* @author Octav Chipara
* @author Aleksander Slominski
*/
public interface XmlComment //extends XmlContainer
{
/**
* A string representing the content of the comment.
*/
public String getContent();
/**
* The document or element information item which contains this information item
* in its [children] property.
*/
public XmlContainer getParent();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy