2 * Copyright (C) 2014, United States Government, as represented by the
3 * Administrator of the National Aeronautics and Space Administration.
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
10 * http://www.apache.org/licenses/LICENSE-2.0.
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.
18 package java.lang.reflect;
20 import java.lang.annotation.Annotation;
23 * (incomplete) support for consructor reflection
25 * pretty stupid - this is almost identical to Method, but we can't derive,
26 * and the delegation happens at the peer level anyways.
28 * NOTE: 'regIdx' and 'name' need to be like Method, or the peer delegation
29 * fails (this is the hack'ish part)
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
35 public /*final*/ class Constructor <T> extends AccessibleObject implements Member {
38 protected String name;
41 public native String getName();
42 public native T newInstance (Object... args)
43 throws IllegalAccessException, InvocationTargetException, InstantiationException;
46 public native int getModifiers();
47 public native Class<?> getReturnType();
48 public native Class<?>[] getParameterTypes();
51 public native Class<T> getDeclaringClass();
54 public native Annotation[] getAnnotations();
56 public native Annotation[] getDeclaredAnnotations();
58 public native <T extends Annotation> T getAnnotation( Class<T> annotationCls);
59 public native Annotation[][] getParameterAnnotations();
62 public boolean isSynthetic () {
67 public native String toString();
70 public native boolean equals (Object obj);
72 public boolean isVarArgs (){
73 return (getModifiers() & Modifier.VARARGS) != 0;
77 public native int hashCode ();
79 public native String toGenericString ();