blob: 212b4f30d540e86ace27cadf8635bf693cd2ec73 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 Composent, Inc. and others. All rights reserved. This
* program and the accompanying materials are made available under the terms of
* the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors: Composent, Inc. - initial API and implementation
******************************************************************************/
package org.eclipse.ecf.core.util;
public class AbstractFactory {
public static Class[] getClassesForTypes(String[] argTypes, Object[] args, ClassLoader cl) throws ClassNotFoundException {
Class clazzes[] = null;
if (args == null || args.length == 0)
clazzes = new Class[0];
else if (argTypes != null) {
clazzes = new Class[argTypes.length];
for (int i = 0; i < argTypes.length; i++) {
clazzes[i] = Class.forName(argTypes[i], true, cl);
}
} else {
clazzes = new Class[args.length];
for (int i = 0; i < args.length; i++) {
if (args[i] == null)
clazzes[i] = null;
else
clazzes[i] = args[i].getClass();
}
}
return clazzes;
}
}