Searched defs:Constructor (Results 1 - 2 of 2) sorted by relevance

/libcore/libart/src/main/java/java/lang/reflect/
H A DConstructor.java48 public final class Constructor<T> extends AbstractMethod implements GenericDeclaration, Member { class in inherits:AbstractMethod,GenericDeclaration,Member
55 public Constructor(ArtMethod artMethod) { method in class:Constructor
135 @Override public TypeVariable<Constructor<T>>[] getTypeParameters() {
137 return (TypeVariable<Constructor<T>>[]) info.formalTypeParameters.clone();
242 * invoking the constructor represented by this {@code Constructor} object.
249 * <li>If this Constructor object is enforcing access control (see
262 * <li>The constructor represented by this {@code Constructor} object is
/libcore/libdvm/src/main/java/java/lang/reflect/
H A DConstructor.java48 public final class Constructor<T> extends AccessibleObject implements GenericDeclaration, class in inherits:AccessibleObject,GenericDeclaration,Member
59 TypeVariable<Constructor<T>>[] formalTypeParameters;
82 private Constructor(){ method in class:Constructor
99 private Constructor(Class<T> declaringClass, Class<?>[] ptypes, Class<?>[] extypes, int slot, int methodDexIndex) { method in class:Constructor
122 public TypeVariable<Constructor<T>>[] getTypeParameters() {
270 * of {@code Constructor} with the same declaring class and parameter types
283 return object instanceof Constructor && toString().equals(object.toString());
364 * Constructor is the hash code of the name of the declaring class.
377 * invoking the constructor represented by this {@code Constructor} object.
384 * <li>If this Constructor objec
[all...]

Completed in 259 milliseconds