1 package net.sourceforge.phpdt.internal.compiler.ast;
6 * Here are php comment.
7 * @author Matthieu Casanova
9 public abstract class AbstractPHPComment extends AstNode {
12 * Create a comment giving starting and ending offset.
13 * @param sourceStart starting offset
14 * @param sourceEnd ending offset
16 protected AbstractPHPComment(final int sourceStart, final int sourceEnd) {
17 super(sourceStart, sourceEnd);
21 * Get the variables from outside (parameters, globals ...)
22 * @param list the list where we will put variables
24 public final void getOutsideVariable(final List list) {
28 * get the modified variables.
29 * @param list the list where we will put variables
31 public final void getModifiedVariable(final List list) {
35 * Get the variables used.
36 * @param list the list where we will put variables
38 public final void getUsedVariable(final List list) {