1 package net.sourceforge.phpdt.internal.compiler.ast;
4 * Here are php comment.
5 * @author Matthieu Casanova
7 public abstract class AbstractPHPComment extends AstNode {
10 * Create a comment giving starting and ending offset
11 * @param sourceStart starting offset
12 * @param sourceEnd ending offset
14 public AbstractPHPComment(int sourceStart, int sourceEnd) {
15 super(sourceStart, sourceEnd);