
ixa.kaflib.Comment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kaflib-naf Show documentation
Show all versions of kaflib-naf Show documentation
Kaflib-naf is a java library to create and edit NAF documents.
The newest version!
package ixa.kaflib;
import org.jdom2.Content;
import org.jdom2.IllegalDataException;
import org.jdom2.Parent;
import org.jdom2.Verifier;
/**
* An XML comment. Methods allow the user to get and set the text of the
* comment.
*
* @author Brett McLaughlin
* @author Jason Hunter
*/
public class Comment extends org.jdom2.Comment {
public Comment(String text) {
super();
text = text.trim();
text = text.replaceAll("-+", "-");
if (text.endsWith("-")) {
text += " .";
}
setText(text);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy