blob: 28b75f09eab4ddd9a1fc9b36054d5b4c420b1d9c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0, which accompanies this distribution
* and is available at https://www.eclipse.org/legal/epl-2.0/.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.common.utility.internal.factory;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import org.eclipse.jpt.common.utility.factory.Factory;
import org.eclipse.jpt.common.utility.internal.ObjectTools;
/**
* A factory that uses Java reflection to return the value returned by a static
* method. Checked exceptions are converted to {@link RuntimeException}s.
*
* @param <T> the type of objects returned by the factory
*
* @see StaticFieldFactory
* @see java.lang.reflect.Method#invoke(Object, Object...)
*/
public class StaticMethodFactory<T>
implements Factory<T>
{
private final Method method;
private final Object[] arguments;
public StaticMethodFactory(Method method, Object[] arguments) {
super();
if ((method == null) || (arguments == null)) {
throw new NullPointerException();
}
if ( ! Modifier.isStatic(method.getModifiers())) {
throw new IllegalArgumentException("method must be static: " + method); //$NON-NLS-1$
}
if ( ! method.isAccessible()) {
throw new IllegalArgumentException("method must be accessible: " + method); //$NON-NLS-1$
}
this.method = method;
this.arguments = arguments;
}
@SuppressWarnings("unchecked")
public T create() {
try {
return (T) this.method.invoke(null, this.arguments);
} catch (IllegalArgumentException ex) {
throw new RuntimeException(ex);
} catch (IllegalAccessException ex) {
throw new RuntimeException(ex);
} catch (InvocationTargetException ex) {
throw new RuntimeException(ex);
}
}
@Override
public String toString() {
return ObjectTools.toString(this, this.method);
}
}