package net.sourceforge.phpdt.internal.compiler.ast; import java.util.List; /** * A Case statement for a Switch. * @author Matthieu Casanova */ public class Case extends AbstractCase { public Expression value; public Case(final Expression value, final Statement[] statements, final int sourceStart, final int sourceEnd) { super(statements, sourceStart, sourceEnd); this.value = value; } /** * Return the object into String. * @param tab how many tabs (not used here * @return a String */ public String toString(final int tab) { final StringBuffer buff = new StringBuffer(tabString(tab)); buff.append("case "); buff.append(value.toStringExpression()); buff.append(" :\n"); if (statements != null) { for (int i = 0; i < statements.length; i++) { final Statement statement = statements[i]; buff.append(statement.toString(tab + 1)); } } return buff.toString(); } /** * get the modified variables. * @return the variables from we change value */ public List getModifiedVariable() { final List list = super.getModifiedVariable(); list.addAll(value.getModifiedVariable()); return list; } /** * Get the variables used. * @return the variables used */ public List getUsedVariable() { final List list = super.getUsedVariable(); list.addAll(value.getUsedVariable()); return list; } }