blob: a975d3ae9206c9fc4abb4ff5954a6bbda32a6f30 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.debug.ui.snippeteditor;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
public class ScrapbookMain1 {
public static void eval(Class clazz) throws ClassNotFoundException, NoSuchMethodException, InvocationTargetException, IllegalAccessException {
Method method=clazz.getDeclaredMethod("nop", new Class[0]); //$NON-NLS-1$
method.invoke(null, new Object[0]);
}
}