org.xmlpull.infoset.XmlComment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xpp5 Show documentation
Show all versions of xpp5 Show documentation
XML Pull parser library developed by Extreme Computing Lab, Indian University
/* -*- c-basic-offset: 4; indent-tabs-mode: nil; -*- //------100-columns-wide------>|*/
//for license please see accompanying LICENSE.txt file (available also at http://www.xmlpull.org/)
package org.xmlpull.infoset;
/**
* Represents
* Comment Information Item.
*
*
* @version $Revision: 1.2 $
* @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();
}