Searched defs:typeName (Results 1 - 25 of 88) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/java/lang/
H A DTypeNotPresentException.java49 private String typeName; field in class:TypeNotPresentException
55 * @param typeName the fully qualified name of the unavailable type
59 public TypeNotPresentException(String typeName, Throwable cause) { argument
60 super("Type " + typeName + " not present", cause);
61 this.typeName = typeName;
69 public String typeName() { return typeName;} method in class:TypeNotPresentException
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DValueContainer.java38 String typeName(); method in interface:ValueContainer
H A DTypeImpl.java31 private String typeName; field in class:TypeImpl
40 if (typeName == null) {
42 typeName = parser.typeName();
44 return typeName;
H A DJNITypeParser.java83 String typeName() { method in class:JNITypeParser
H A DLocalVariableImpl.java87 public String typeName() { method in class:LocalVariableImpl
89 return parser.typeName();
/openjdk7/jdk/src/share/classes/java/sql/
H A DSQLData.java106 * @param typeName the SQL type name of the value on the data stream
113 void readSQL (SQLInput stream, String typeName) throws SQLException; argument
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DValueContainer.java39 String typeName(); method in interface:ValueContainer
H A DFieldImpl.java80 public String typeName() { method in class:FieldImpl
82 return parser.typeName();
H A DJNITypeParser.java84 String typeName() { method in class:JNITypeParser
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DParameter.java55 String typeName(); method in interface:Parameter
H A DType.java47 String typeName(); method in interface:Type
/openjdk7/jdk/src/share/classes/sun/reflect/annotation/
H A DTypeNotPresentExceptionProxy.java37 String typeName; field in class:TypeNotPresentExceptionProxy
40 public TypeNotPresentExceptionProxy(String typeName, Throwable cause) { argument
41 this.typeName = typeName;
46 return new TypeNotPresentException(typeName, cause);
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DField.java55 String typeName(); method in interface:Field
H A DLocalVariable.java67 String typeName(); method in interface:LocalVariable
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/gmbal/util/
H A DGenericConstructor.java42 private String typeName ; field in class:GenericConstructor
66 this.typeName = className ;
75 type = (Class<T>)Class.forName( typeName ) ;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DCValuePropertyInfo.java44 public CValuePropertyInfo(String name, XSComponent source, CCustomizations customizations, Locator locator, TypeUse type, QName typeName) { argument
45 super(name, type, typeName, source, customizations, locator);
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DParameterImpl.java76 public String typeName() { method in class:ParameterImpl
78 ? type.typeName() // omit formal type params or bounds
90 return typeName() + " " + sym;
H A DAbstractTypeImpl.java52 public String typeName() { method in class:AbstractTypeImpl
65 return typeName();
H A DParameterizedTypeImpl.java112 public String typeName() { method in class:ParameterizedTypeImpl
/openjdk7/jdk/test/javax/management/openmbean/
H A DArrayTypeTest.java82 String typeName,
101 if (a.getTypeName().equals(typeName)) {
105 System.out.println("\t\t---> expecting " + typeName);
79 checkGetters(ArrayType a, String className, String description, String typeName, boolean isArray, boolean isPrimitiveArray, int dimension) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DTypeInfoImpl.java80 private final String typeName; field in class:TypeInfoImpl
84 typeName = null;
86 public TypeInfoImpl(String typeNamespace, String typeName) { argument
88 this.typeName = typeName;
96 return typeName;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJPrimitiveType.java37 private final String typeName; field in class:JPrimitiveType
45 JPrimitiveType(JCodeModel owner, String typeName, Class<?> wrapper ) { argument
47 this.typeName = typeName;
54 return typeName;
117 return exp.invoke(typeName+"Value");
121 f.p(typeName);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/
H A DTypeUtil.java243 String typeName, ErrorReceiver errorHandler, Locator errorSource ) {
246 return codeModel.parseType(typeName);
251 Messages.ERR_CLASS_NOT_FOUND.format(typeName)
255 return codeModel.directClass(typeName);
242 getType( JCodeModel codeModel, String typeName, ErrorReceiver errorHandler, Locator errorSource ) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DLeafInfoImpl.java42 private final QName typeName; field in class:LeafInfoImpl
44 protected LeafInfoImpl(TypeT type,QName typeName) { argument
48 this.typeName = typeName;
69 return typeName;
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DTabularType.java79 * @param typeName The name given to the tabular type this instance represents; cannot be a null or empty string.
99 * or <var>typeName</var> or <var>description</var> is a null or empty string.
104 public TabularType(String typeName, argument
111 super(TabularData.class.getName(), typeName, description, false);

Completed in 137 milliseconds

1234