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 public AbstractPHPComment(final int sourceStart, final int sourceEnd) {
17 super(sourceStart, sourceEnd);
21 * Get the variables from outside (parameters, globals ...)
22 * @return an empty list
24 public void getOutsideVariable(final List list) {
28 * get the modified variables.
29 * @return an empty list
31 public void getModifiedVariable(final List list) {
35 * Get the variables used.
36 * @return an empty list
38 public void getUsedVariable(final List list) {