blob: 912e06b34be365ecab32b75986b40076f714317a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 xored software, Inc.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* xored software, Inc. - initial API and Implementation (Vladimir Belov)
*******************************************************************************/
package org.eclipse.dltk.javascript.ast;
import org.eclipse.dltk.ast.ASTNode;
import org.eclipse.dltk.ast.ASTVisitor;
import org.eclipse.dltk.core.ISourceRange;
import org.eclipse.dltk.core.SourceRange;
public abstract class Comment extends ASTNode {
private String text;
public Comment() {
}
@Override
public void traverse(ASTVisitor visitor) throws Exception {
if (visitor.visit(this)) {
visitor.endvisit(this);
}
}
public String getText() {
return this.text;
}
public void setText(String text) {
this.text = text;
}
public abstract boolean isMultiLine();
public abstract boolean isDocumentation();
@Override
public String toString() {
return getClass().getSimpleName() + '[' + getText() + ']';
}
public ISourceRange getRange() {
return new SourceRange(sourceStart(), sourceEnd() - sourceStart());
}
}