|
Eclipse JDT 2.1 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Type | |
org.eclipse.jdt.core.dom | The Java DOM is the set of classes that model the source code of a Java program as a structured document. |
Uses of Type in org.eclipse.jdt.core.dom |
Subclasses of Type in org.eclipse.jdt.core.dom | |
class |
ArrayType
Type node for an array type. |
class |
PrimitiveType
Primitive type nodes. |
class |
SimpleType
Type node for a named class or interface type. |
Methods in org.eclipse.jdt.core.dom that return Type | |
Type |
MethodDeclaration.getReturnType()
Returns the return type of the method declared in this method declaration, exclusive of any extra array dimensions. |
Type |
TypeLiteral.getType()
Returns the type in this type literal expression. |
Type |
FieldDeclaration.getType()
Returns the base type declared in this field declaration. |
Type |
VariableDeclarationExpression.getType()
Returns the base type declared in this variable declaration. |
Type |
InstanceofExpression.getRightOperand()
Returns the right operand of this instanceof expression. |
Type |
ArrayType.getComponentType()
Returns the component type of this array type. |
Type |
ArrayType.getElementType()
Returns the element type of this array type. |
Type |
SingleVariableDeclaration.getType()
Returns the type of the variable declared in this variable declaration, exclusive of any extra array dimensions. |
Type |
CastExpression.getType()
Returns the type in this cast expression. |
Type |
VariableDeclarationStatement.getType()
Returns the base type declared in this variable declaration statement. |
Methods in org.eclipse.jdt.core.dom with parameters of type Type | |
ArrayType |
AST.newArrayType(Type componentType)
Creates and returns a new unparented array type node with the given component type, which may be another array type. |
ArrayType |
AST.newArrayType(Type elementType,
int dimensions)
Creates and returns a new unparented array type node with the given element type and number of dimensions. |
void |
MethodDeclaration.setReturnType(Type type)
Sets the return type of the method declared in this method declaration to the given type, exclusive of any extra array dimensions. |
void |
TypeLiteral.setType(Type type)
Sets the type in this type literal expression to the given type. |
void |
FieldDeclaration.setType(Type type)
Sets the base type declared in this field declaration to the given type. |
void |
VariableDeclarationExpression.setType(Type type)
Sets the base type declared in this variable declaration to the given type. |
void |
InstanceofExpression.setRightOperand(Type referenceType)
Sets the right operand of this instanceof expression. |
void |
ArrayType.setComponentType(Type componentType)
Sets the component type of this array type. |
void |
SingleVariableDeclaration.setType(Type type)
Sets the type of the variable declared in this variable declaration to the given type, exclusive of any extra array dimensions. |
void |
CastExpression.setType(Type type)
Sets the type in this cast expression to the given type. |
void |
VariableDeclarationStatement.setType(Type type)
Sets the base type declared in this variable declaration statement to the given type. |
|
Eclipse JDT 2.1 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |