Initial import
[jpf-core.git] / src / classes / java / lang / reflect / Constructor.java
1 /*
2  * Copyright (C) 2014, United States Government, as represented by the
3  * Administrator of the National Aeronautics and Space Administration.
4  * All rights reserved.
5  *
6  * The Java Pathfinder core (jpf-core) platform is licensed under the
7  * Apache License, Version 2.0 (the "License"); you may not use this file except
8  * in compliance with the License. You may obtain a copy of the License at
9  * 
10  *        http://www.apache.org/licenses/LICENSE-2.0. 
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and 
16  * limitations under the License.
17  */
18 package java.lang.reflect;
19
20 import java.lang.annotation.Annotation;
21
22 /**
23  * (incomplete) support for consructor reflection
24  * 
25  * pretty stupid - this is almost identical to Method, but we can't derive,
26  * and the delegation happens at the peer level anyways.
27  * 
28  * NOTE: 'regIdx' and 'name' need to be like Method, or the peer delegation
29  * fails (this is the hack'ish part)
30  * 
31  * NOTE: we ditch the 'final' modifier so that we can provide our
32  * own serialization ctor objects - that's probably going away
33  * once we replace ObjectStreamClass
34  */
35 public /*final*/ class Constructor <T> extends AccessibleObject implements Member {
36   
37   protected int regIdx;
38   protected String name;
39
40   @Override
41   public native String getName();
42   public native T newInstance (Object... args)
43         throws IllegalAccessException, InvocationTargetException, InstantiationException;
44   
45   @Override
46   public native int getModifiers();
47   public native Class<?> getReturnType();
48   public native Class<?>[] getParameterTypes();
49   
50   @Override
51   public native Class<T> getDeclaringClass();
52   
53   @Override
54   public native Annotation[] getAnnotations();
55   @Override
56   public native Annotation[] getDeclaredAnnotations();
57   @Override
58   public native <T extends Annotation> T getAnnotation( Class<T> annotationCls);
59   public native Annotation[][] getParameterAnnotations();
60   
61   @Override
62   public boolean isSynthetic () {
63     return false;
64   }
65   
66   @Override
67   public native String toString();
68   
69   @Override
70   public native boolean equals (Object obj);
71
72   public boolean isVarArgs (){
73     return (getModifiers() & Modifier.VARARGS) != 0;
74   }
75
76   @Override
77   public native int hashCode ();
78
79   public native String toGenericString ();
80 }