package net.sourceforge.phpdt.internal.compiler.ast; /** * Here are php comment. * @author Matthieu Casanova */ public abstract class AbstractPHPComment extends AstNode { /** * Create a comment giving starting and ending offset * @param sourceStart starting offset * @param sourceEnd ending offset */ public AbstractPHPComment(int sourceStart, int sourceEnd) { super(sourceStart, sourceEnd); } }