Java org.eclipse.jdt.core.dom SwitchCase fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jdt.core.dom SwitchCase fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jdt.core.dom SwitchCase.

The text is from its open source code.

Field

ChildPropertyDescriptorEXPRESSION_PROPERTY
The "expression" structural property of this node type (child type: Expression ).

Constructor

SwitchCase(AST ast)
Creates a new AST node for a switch case pseudo-statement owned by the given AST.

Method

voidaccept(ASTVisitor visitor)
Accepts the given visitor on a visit of the current node.
booleanequals(Object obj)
The ASTNode implementation of this Object method uses object identity (==).
ExpressiongetExpression()
Returns the expression of this switch case, or null if there is none (the "default:" case).
intgetLength()
Returns the length in characters of the original source file indicating where the source fragment corresponding to this node ends.
ASTNodegetParent()
Returns this node's parent node, or null if this is the root node.
intgetStartPosition()
Returns the character index into the original source file indicating where the source fragment corresponding to this node begins.
booleanisDefault()
Returns whether this switch case represents the "default:" case.
voidsetExpression(Expression expression)
Sets the expression of this switch case, or clears it (turns it into the "default:" case).
voidsetSourceRange(int startPosition, int length)
Sets the source range of the original source file where the source fragment corresponding to this node was found.
StringtoString()
Returns a string representation of this node suitable for debugging purposes only.