Package org.fcrepo.client.export

Examples of org.fcrepo.client.export.ExportDialog


                .setToolTipText("Exports a serialized Digitial Object to disk.");
        fileExportObject.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                new ExportDialog(ExportDialog.ONE);
            }
        });

        JMenuItem fileExportMultiple = new JMenuItem("Multiple Objects...");
        fileExportMultiple.setMnemonic(KeyEvent.VK_M);
        fileExportMultiple
                .setToolTipText("Exports multiple serialized Digitial Objects to disk.");
        fileExportMultiple.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                new ExportDialog(ExportDialog.MULTI);
            }
        });
        fileExport.add(fileExportObject);
        fileExport.add(fileExportMultiple);
View Full Code Here

TOP

Related Classes of org.fcrepo.client.export.ExportDialog

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.