org.xmlpull.v1.builder.XmlComment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xpp3 Show documentation
Show all versions of xpp3 Show documentation
XML Pull parser library developed by Extreme Computing Lab, Indiana University
The newest version!
package org.xmlpull.v1.builder;
/**
* Represents
* Comment Information Item.
*
*
* @version $Revision: 1.5 $
* @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();
}