Package org.fcrepo.server.utilities

Examples of org.fcrepo.server.utilities.MethodInvokerThread


    public void actionPerformed(ActionEvent event) {
        m_dialog.setVisible(false);
        if (event.getActionCommand().equals("OK")) {
            try {
                MethodInvokerThread th =
                        new MethodInvokerThread(m_invoker,
                                                m_invoker
                                                        .getClass()
                                                        .getMethod("invoke",
                                                                   new Class[0]),
                                                new Object[0]);
                th.start();
            } catch (NoSuchMethodException nsme) {
                System.out
                        .println("No such method as invoke()? This Shouldnt happen!");
            }
        }
View Full Code Here

TOP

Related Classes of org.fcrepo.server.utilities.MethodInvokerThread

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.