X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/DefaultCase.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/DefaultCase.java index 758c404..e8c6d12 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/DefaultCase.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/DefaultCase.java @@ -1,16 +1,26 @@ package net.sourceforge.phpdt.internal.compiler.ast; /** + * A default case for a switch. + * it's default : .....; * @author Matthieu Casanova */ -public class DefaultCase extends AbstractCase { +public final class DefaultCase extends AbstractCase { + /** + * Create a default case. + * + * @param statements the statements + * @param sourceStart the starting offset + * @param sourceEnd the ending offset + */ public DefaultCase(final Statement[] statements, final int sourceStart, final int sourceEnd) { super(statements, sourceStart, sourceEnd); } /** * Return the object into String. + * * @param tab how many tabs (not used here * @return a String */