Package org.fcrepo.client.objecteditor

Examples of org.fcrepo.client.objecteditor.ObjectEditorFrame


        }
        Iterator pidIter = m_pids.iterator();
        while (pidIter.hasNext()) {
            String pid = (String) pidIter.next();
            try {
                ObjectEditorFrame editor = new ObjectEditorFrame(pid, 0);
                editor.setVisible(true);
                Administrator.getDesktop().add(editor);
                editor.setSelected(true);
            } catch (Exception e) {
                e.printStackTrace();
                Administrator.showErrorDialog(Administrator.getDesktop(),
                                              "Error Opening Object",
                                              e.getClass().getName() + ": "
View Full Code Here

TOP

Related Classes of org.fcrepo.client.objecteditor.ObjectEditorFrame

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.