Changes:
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / AbstractPHPComment.java
1 package net.sourceforge.phpdt.internal.compiler.ast;
2
3 import java.util.List;
4
5 /**
6  * Here are php comment.
7  * @author Matthieu Casanova
8  */
9 public abstract class AbstractPHPComment extends AstNode {
10
11   /**
12    * Create a comment giving starting and ending offset.
13    * @param sourceStart starting offset
14    * @param sourceEnd ending offset
15    */
16   public AbstractPHPComment(final int sourceStart, final int sourceEnd) {
17     super(sourceStart, sourceEnd);
18   }
19
20   /**
21    * Get the variables from outside (parameters, globals ...)
22    * @return an empty list
23    */
24   public void getOutsideVariable(final List list) {
25   }
26
27   /**
28    * get the modified variables.
29    * @return an empty list
30    */
31   public void getModifiedVariable(final List list) {
32   }
33
34   /**
35    * Get the variables used.
36    * @return an empty list
37    */
38   public void getUsedVariable(final List list) {
39   }
40 }