X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/AbstractPHPComment.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/AbstractPHPComment.java new file mode 100644 index 0000000..0d3f2f0 --- /dev/null +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/AbstractPHPComment.java @@ -0,0 +1,17 @@ +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); + } +}