Searched refs:componentType (Results 1 - 25 of 45) sorted by relevance

12

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJArrayClass.java41 private final JType componentType; field in class:JArrayClass
46 this.componentType = component;
51 return componentType.name()+"[]";
55 return componentType.fullName()+"[]";
59 return componentType.binaryName()+"[]";
63 f.g(componentType).p("[]");
87 return componentType;
102 if( componentType.equals( ((JArrayClass)obj).componentType ) )
109 return componentType
[all...]
/openjdk7/jdk/src/share/classes/sun/reflect/generics/tree/
H A DArrayTypeSignature.java31 private TypeSignature componentType; field in class:ArrayTypeSignature
33 private ArrayTypeSignature(TypeSignature ct) {componentType = ct;}
39 public TypeSignature getComponentType(){return componentType;}
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DArrayType.java95 Type componentType() throws ClassNotLoadedException; method in interface:ArrayType
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/nav/
H A DGenericArrayTypeImpl.java55 Type componentType = getGenericComponentType();
58 if (componentType instanceof Class)
59 sb.append(((Class) componentType).getName());
61 sb.append(componentType.toString());
/openjdk7/jdk/src/share/classes/sun/reflect/generics/reflectiveObjects/
H A DGenericArrayTypeImpl.java68 Type componentType = getGenericComponentType();
71 if (componentType instanceof Class)
72 sb.append(((Class)componentType).getName() );
74 sb.append(componentType.toString());
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orb/
H A DPrefixParserData.java37 private Class componentType ; field in class:PrefixParserData
41 Object testValue, StringPair[] testData, Class componentType )
45 this.componentType = componentType ;
51 componentType ) ;
H A DParserActionFactory.java40 Operation operation, String fieldName, Class componentType )
42 return new PrefixParserAction( propertyName, operation, fieldName, componentType ) ;
H A DPrefixParserAction.java45 private Class componentType ; field in class:PrefixParserAction
49 Operation operation, String fieldName, Class componentType )
52 this.componentType = componentType ;
95 result = Array.newInstance( componentType, size ) ;
98 getPropertyName(), componentType,
112 componentType, new Integer(size),
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DArray.java54 * Array.newInstance(componentType, x);
58 * @param componentType the {@code Class} object representing the
63 * {@code componentType} parameter is null
64 * @exception IllegalArgumentException if componentType is {@link Void#TYPE}
68 public static Object newInstance(Class<?> componentType, int length) argument
70 return newArray(componentType, length);
76 * If {@code componentType}
79 * {@code componentType} as its component type. If
80 * {@code componentType} represents an array class, the
83 * dimensions of {@code componentType}
106 newInstance(Class<?> componentType, int... dimensions) argument
477 newArray(Class componentType, int length) argument
480 multiNewArray(Class componentType, int[] dimensions) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DTypeSignature.java178 String componentType ="";
185 componentType = paramsig.substring(0, endindex);
197 } else componentType = paramsig;
199 paramJVMSig += getComponentType(componentType);
207 private String getComponentType(String componentType) throws SignatureException { argument
211 if(componentType != null){
212 if(componentType.equals("void")) JVMSig += SIG_VOID ;
213 else if(componentType.equals("boolean")) JVMSig += SIG_BOOLEAN ;
214 else if(componentType.equals("byte")) JVMSig += SIG_BYTE ;
215 else if(componentType
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orb/
H A DParserDataFactory.java41 Object testValue, StringPair[] testData, Class componentType )
44 defaultValue, testValue, testData, componentType ) ;
H A DPropertyParser.java54 Operation action, String fieldName, Class componentType )
57 action, fieldName, componentType ) ) ;
/openjdk7/jdk/test/java/io/Serializable/evolution/RenamePackage/extension/
H A DExtendedObjectInputStream.java61 Class componentType =
63 //System.out.println("ComponentType=" + componentType.getName());
65 java.lang.reflect.Array.newInstance(componentType, 3);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DArrayTypeImpl.java95 public Type componentType() throws ClassNotLoadedException { method in class:ArrayTypeImpl
136 Type destComponentType = ((ArrayType)destType).componentType();
137 return isComponentAssignable(destComponentType, componentType());
180 Type t = componentType();
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DArrayTypeImpl.java105 public Type componentType() throws ClassNotLoadedException { method in class:ArrayTypeImpl
134 Type destComponentType = ((ArrayType)destType).componentType();
135 return isComponentAssignable(destComponentType, componentType());
171 Type t = componentType();
/openjdk7/jdk/src/share/classes/sun/reflect/generics/factory/
H A DCoreReflectionFactory.java121 public Type makeArrayType(Type componentType){ argument
122 if (componentType instanceof Class<?>)
123 return Array.newInstance((Class<?>) componentType, 0).getClass();
125 return GenericArrayTypeImpl.make(componentType);
H A DGenericsFactory.java128 * @param componentType - the component type of the array
130 * @throws MalformedParameterizedTypeException if <tt>componentType</tt>
135 Type makeArrayType(Type componentType); argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DLSInputListImpl.java110 Class componentType = arrayClass.getComponentType();
111 a = (Object[]) Array.newInstance(componentType, fLength);
H A DObjectListImpl.java104 Class componentType = arrayClass.getComponentType();
105 a = (Object[]) Array.newInstance(componentType, fLength);
H A DStringListImpl.java150 Class componentType = arrayClass.getComponentType();
151 a = (Object[]) Array.newInstance(componentType, fLength);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DArrayInfoImpl.java62 TypeT componentType = nav().getComponentType(arrayType);
63 this.itemType = builder.getTypeInfo(componentType, this);
68 nav().getTypeName(componentType)),this));
/openjdk7/langtools/src/share/classes/com/sun/mirror/util/
H A DTypes.java98 * @param componentType the component type
103 ArrayType getArrayType(TypeMirror componentType); argument
/openjdk7/jdk/src/share/classes/sun/reflect/annotation/
H A DAnnotationParser.java459 Class<?> componentType = arrayType.getComponentType();
461 if (componentType == byte.class) {
463 } else if (componentType == char.class) {
465 } else if (componentType == double.class) {
467 } else if (componentType == float.class) {
469 } else if (componentType == int.class) {
471 } else if (componentType == long.class) {
473 } else if (componentType == short.class) {
475 } else if (componentType == boolean.class) {
477 } else if (componentType
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DValueHandlerImpl.java608 Class componentType = sequence.getComponentType();
609 Class actualType = componentType;
612 if (componentType.isPrimitive()) {
613 if (componentType == Integer.TYPE) {
617 } else if (componentType == Byte.TYPE) {
621 } else if (componentType == Long.TYPE) {
625 } else if (componentType == Float.TYPE) {
629 } else if (componentType == Double.TYPE) {
633 } else if (componentType == Short.TYPE) {
637 } else if (componentType
[all...]
/openjdk7/jdk/test/java/io/Serializable/subclass/
H A DXObjectOutputStream.java130 Class componentType = FieldType.getComponentType();
131 if (componentType.isPrimitive())
133 componentType.toString());
136 componentType.toString());

Completed in 292 milliseconds

12