Searched defs:componentType (Results 1 - 18 of 18) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DArrayType.java95 Type componentType() throws ClassNotLoadedException; method in interface:ArrayType
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orb/
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),
H A DPrefixParserData.java37 private Class componentType ; field in class:PrefixParserData
41 Object testValue, StringPair[] testData, Class componentType )
45 this.componentType = componentType ;
51 componentType ) ;
/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/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/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/generics/factory/
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
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);
/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/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/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/langtools/src/share/classes/com/sun/tools/apt/mirror/util/
H A DTypesImpl.java123 public ArrayType getArrayType(TypeMirror componentType) { argument
124 if (componentType instanceof VoidType) {
128 new Type.ArrayType(((TypeMirrorImpl) componentType).type,
/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/langtools/src/share/classes/javax/lang/model/util/
H A DTypes.java208 * @param componentType the component type
213 ArrayType getArrayType(TypeMirror componentType); argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DJavacTypes.java173 public ArrayType getArrayType(TypeMirror componentType) { argument
174 switch (componentType.getKind()) {
179 throw new IllegalArgumentException(componentType.toString());
181 return new Type.ArrayType((Type) componentType, syms.arrayClass);
/openjdk7/jdk/src/share/classes/sun/management/
H A DMappedMXBeanType.java273 protected MappedMXBeanType componentType; field in class:MappedMXBeanType.ArrayMXBeanType
278 this.componentType = getMappedType(c.getComponentType());
327 Array.newInstance(componentType.getMappedTypeClass(),
334 openArray[i] = componentType.toOpenTypeData(o);
353 Array.newInstance((Class) componentType.getJavaType(),
360 array[i] = componentType.toJavaTypeData(o);
373 this.componentType = getMappedType(gat.getGenericComponentType());
/openjdk7/jdk/src/windows/native/com/sun/media/sound/
H A DPLATFORM_API_WinOS_Ports.c119 char* getComponentType(int componentType) { argument
120 switch (componentType) {
149 TRACE3("\"%s\", fdwLine=%s, componentType=%s\n", mixerLine->szName, getLineFlags(mixerLine->fdwLine), getComponentType(mixerLine->dwComponentType));
523 int componentType2type(DWORD componentType) { argument
525 if (componentType >= MIXERLINE_COMPONENTTYPE_DST_FIRST && componentType <= MIXERLINE_COMPONENTTYPE_DST_LAST) {
528 else if (componentType >= MIXERLINE_COMPONENTTYPE_SRC_FIRST && componentType <= MIXERLINE_COMPONENTTYPE_SRC_LAST) {
532 switch (componentType) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDHandler.java1272 String componentType = DOMUtil.getLocalName(redefineComp);
1273 if (componentType.equals(SchemaSymbols.ELT_ATTRIBUTEGROUP)) {
1281 else if ((componentType.equals(SchemaSymbols.ELT_COMPLEXTYPE)) ||
1282 (componentType.equals(SchemaSymbols.ELT_SIMPLETYPE))) {
1287 if (componentType.equals(SchemaSymbols.ELT_COMPLEXTYPE)) {
1296 else if (componentType.equals(SchemaSymbols.ELT_GROUP)) {
1316 String componentType = DOMUtil.getLocalName(globalComp);
1318 if (componentType.equals(SchemaSymbols.ELT_ATTRIBUTE)) {
1321 else if (componentType.equals(SchemaSymbols.ELT_ATTRIBUTEGROUP)) {
1324 else if ((componentType
3801 renameRedefiningComponents(XSDocumentInfo currSchema, Element child, String componentType, String oldName, String newName) argument
[all...]

Completed in 106 milliseconds