List of usage examples for javax.xml.stream XMLStreamWriter writeComment
public void writeComment(String data) throws XMLStreamException;
From source file:org.slc.sli.modeling.wadl.writer.WadlWriter.java
private static final void writeComment(final DmComment comment, final XMLStreamWriter xsw) throws XMLStreamException { xsw.writeComment(comment.getStringValue()); }