com.artemis.utils.reflect.Constructor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artemis-odb Show documentation
Show all versions of artemis-odb Show documentation
Fork of Artemis Entity System Framework.
/*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
******************************************************************************/
package com.artemis.utils.reflect;
import java.lang.reflect.InvocationTargetException;
/** Provides information about, and access to, a single constructor for a Class.
* @author nexsoftware */
@SuppressWarnings("rawtypes")
public final class Constructor {
private final java.lang.reflect.Constructor constructor;
Constructor (java.lang.reflect.Constructor constructor) {
this.constructor = constructor;
}
/** Returns an array of Class objects that represent the formal parameter types, in declaration order, of the constructor. */
public Class[] getParameterTypes () {
return constructor.getParameterTypes();
}
/** Returns the Class object representing the class or interface that declares the constructor. */
public Class getDeclaringClass () {
return constructor.getDeclaringClass();
}
public boolean isAccessible () {
return constructor.isAccessible();
}
public void setAccessible (boolean accessible) {
constructor.setAccessible(accessible);
}
public int getModifiers() {
return constructor.getModifiers();
}
/** Uses the constructor to create and initialize a new instance of the constructor's declaring class, with the supplied initialization parameters. */
public Object newInstance (Object... args) throws ReflectionException {
try {
return constructor.newInstance(args);
} catch (IllegalArgumentException e) {
throw new ReflectionException("Illegal argument(s) supplied to constructor for class: " + getDeclaringClass().getName(), e);
} catch (InstantiationException e) {
throw new ReflectionException("Could not instantiate instance of class: " + getDeclaringClass().getName(), e);
} catch (IllegalAccessException e) {
throw new ReflectionException("Could not instantiate instance of class: " + getDeclaringClass().getName(), e);
} catch (InvocationTargetException e) {
throw new ReflectionException("Exception occurred in constructor for class: " + getDeclaringClass().getName(), e);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy