站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > NetBeans API Javadoc 4.1.0

Uses of Class org.openide.src.Type (NetBeans Java Hierarchy API) - NetBeans API Javadoc 4.1.0

 

Uses of Class
org.openide.src.Type

Packages that use Type
org.openide.src The parsing results of Java sources and the result of Java Reflection may be uniformly accessed as source elements
 

Uses of Type in org.openide.src
 

Fields in org.openide.src declared as Type
static Type Type.VOID
          void primitive type.
static Type Type.BOOLEAN
          boolean primitive type.
static Type Type.INT
          int primitive type.
static Type Type.CHAR
          char primitive type.
static Type Type.BYTE
          byte primitive type.
static Type Type.SHORT
          short primitive type.
static Type Type.LONG
          long primitive type.
static Type Type.FLOAT
          float primitive type.
static Type Type.DOUBLE
          double primitive type.
 

Methods in org.openide.src that return Type
static Type Type.createArray(Type elementType)
          Create an array type.
static Type Type.createClass(Identifier id)
          Create a class type by name.
static Type Type.createFromClass(Class cl)
          Create a type from an existing class.
static Type Type.parse(String text)
          Create a type from its string representation.
 Type Type.getElementType()
          Get the element type of this array type.
 Type MethodParameter.getType()
          Get the parameter type.
 Type MethodElement.getReturn()
          Get the method's return type.
 Type MethodElement.Impl.getReturn()
          Get the method's return type.
 Type FieldElement.getType()
          Get the value type of the field.
 Type FieldElement.Impl.getType()
          Get the value type of the field.
 

Methods in org.openide.src with parameters of type Type
static Type Type.createArray(Type elementType)
          Create an array type.
 boolean Type.compareTo(Type type, boolean source)
          Compare the specified Type with this Type for equality.
 void MethodParameter.setType(Type type)
          Set the parameter type.
 void MethodElement.setReturn(Type ret)
          Set the method's return type.
 void MethodElement.Impl.setReturn(Type ret)
          Set the method's return type.
 void FieldElement.setType(Type type)
          Set the value type of the field.
 void FieldElement.Impl.setType(Type type)
          Set the value type of the field.
 MethodElement ClassElement.getMethod(Identifier name, Type[] arguments)
          Find a method by signature.
 ConstructorElement ClassElement.getConstructor(Type[] arguments)
          Find a constructor by signature.
 MethodElement ClassElement.Impl.getMethod(Identifier name, Type[] arguments)
          Finds a method by signature.
 ConstructorElement ClassElement.Impl.getConstructor(Type[] arguments)
          Find a constructor by signature.
 

Constructors in org.openide.src with parameters of type Type
MethodParameter(String name, Type type, boolean fin)
          Create new parameter.
MethodElement.Key(Identifier name, Type[] params)
          Constructs a key by name and parameters.
MethodElement.Key(Identifier name, Type[] params, Type returnType)
          Constructs a key that checks also a return type of the method.
ConstructorElement.Key(Type[] params)
          Construct a key by parameter types.
 


 

Built on May 4 2005.  |  Portions Copyright 1997-2005 Sun Microsystems, Inc. All rights reserved.