net.sourceforge.pmd.lang.modelica.ast.ASTStringComment Maven / Gradle / Ivy
The newest version!
/*
* BSD-style license; for more info see http://pmd.sourceforge.net/license.html
*/
package net.sourceforge.pmd.lang.modelica.ast;
public final class ASTStringComment extends AbstractModelicaNode {
private String comment;
ASTStringComment(int id) {
super(id);
}
@Override
protected R acceptModelicaVisitor(ModelicaVisitor super P, ? extends R> visitor, P data) {
return visitor.visit(this, data);
}
void setComment(String comment) {
this.comment = comment;
}
public String getComment() {
return comment;
}
}