package net.sourceforge.phpdt.internal.compiler.ast;
+import java.util.List;
+
/**
* It's html code.
* @param sourceStart the starting offset
* @param sourceEnd the ending offset
*/
- public HTMLCode(char[] htmlCode, int sourceStart, int sourceEnd) {
+ public HTMLCode(final char[] htmlCode,
+ final int sourceStart,
+ final int sourceEnd) {
super(sourceStart, sourceEnd);
this.htmlCode = htmlCode;
}
* @param tab how many tabs before this html
* @return the text of the block
*/
- public String toString(int tab) {
- return new String(htmlCode)+" ";
+ public String toString(final int tab) {
+ return new String(htmlCode) + " ";//$NON-NLS-1$
+ }
+
+ /**
+ * Get the variables from outside (parameters, globals ...)
+ * @return an empty list
+ */
+ public void getOutsideVariable(final List list) {
+ }
+
+ /**
+ * get the modified variables.
+ * @return an empty list
+ */
+ public void getModifiedVariable(final List list) {
+ }
+
+ /**
+ * Get the variables used.
+ * @return an empty list
+ */
+ public void getUsedVariable(final List list) {
}
}