Merge git+ssh://davetron5000@repo.or.cz/srv/git/vimdoclet
[vimdoclet.git] / sample / java.lang.reflect.GenericArrayType.txt
bloba7e7e14eba3473b046791b99747ad788837816d0
1 *java.lang.reflect.GenericArrayType* *GenericArrayType* GenericArrayType represe
3 public interface interface GenericArrayType
5   implements |java.lang.reflect.Type|
7 |java.lang.reflect.GenericArrayType_Description|
8 |java.lang.reflect.GenericArrayType_Fields|
9 |java.lang.reflect.GenericArrayType_Constructors|
10 |java.lang.reflect.GenericArrayType_Methods|
12 ================================================================================
14 *java.lang.reflect.GenericArrayType_Methods*
15 |java.lang.reflect.GenericArrayType.getGenericComponentType()|Returns a Type ob
17 *java.lang.reflect.GenericArrayType_Description*
19 GenericArrayType represents an array type whose component type is either a 
20 parameterized type or a type variable. 
23 *java.lang.reflect.GenericArrayType.getGenericComponentType()*
25 public |java.lang.reflect.Type| getGenericComponentType()
27 Returns a Type object representing the component type of this array. This 
28 method creates the component type of the array. See the declaration of 
29 ParameterizedType(|java.lang.reflect.ParameterizedType|) for the semantics of 
30 the creation process for parameterized types and see 
31 TypeVariable(|java.lang.reflect.TypeVariable|) for the creation process for 
32 type variables. 
35     Returns: a Type object representing the component type of this array