1 package net.sourceforge.phpdt.internal.compiler.ast;
3 import net.sourceforge.phpdt.internal.compiler.ast.declarations.VariableUsage;
6 import java.util.ArrayList;
9 * Here are php comment.
10 * @author Matthieu Casanova
12 public abstract class AbstractPHPComment extends AstNode {
15 * Create a comment giving starting and ending offset.
16 * @param sourceStart starting offset
17 * @param sourceEnd ending offset
19 public AbstractPHPComment(final int sourceStart, final int sourceEnd) {
20 super(sourceStart, sourceEnd);
24 * Get the variables from outside (parameters, globals ...)
25 * @return an empty list
27 public void getOutsideVariable(final List list) {
31 * get the modified variables.
32 * @return an empty list
34 public void getModifiedVariable(final List list) {
38 * Get the variables used.
39 * @return an empty list
41 public void getUsedVariable(final List list) {