Examples of LinkSelection


Examples of com.pcmsolutions.device.EMU.E4.selections.LinkSelection

    public boolean importData(JComponent comp, Transferable t) {
        if (comp instanceof EditableLinkTable.LinkSelectionAcceptor) {
            if (t.isDataFlavorSupported(LinkTableTransferHandler.linkFlavor)) {
                try {
                    LinkSelection ils = (LinkSelection) t.getTransferData(LinkTableTransferHandler.linkFlavor);
                    ((EditableLinkTable.LinkSelectionAcceptor) comp).setSelection(ils);
                    return true;
                } catch (UnsupportedFlavorException e) {
                    e.printStackTrace();
                } catch (IOException e) {
View Full Code Here

Examples of com.pcmsolutions.device.EMU.E4.selections.LinkSelection

                }
            }
        } else if (comp instanceof EditableLinkTable.LinkSelectionAcceptor) {
            if (t.isDataFlavorSupported(linkFlavor)) {
                try {
                    LinkSelection ils = (LinkSelection) t.getTransferData(linkFlavor);
                    ((EditableLinkTable.LinkSelectionAcceptor) comp).setSelection(ils);
                    return true;
                } catch (UnsupportedFlavorException e) {
                    e.printStackTrace();
                } catch (IOException e) {
View Full Code Here

Examples of com.pcmsolutions.device.EMU.E4.selections.LinkSelection

        public LinkSelection getSelection() {
            int[] selRows = this.getSelectedRows();
            ReadablePreset.ReadableLink[] readLinks = new ReadablePreset.ReadableLink[selRows.length];
            for (int i = 0,j = selRows.length; i < j; i++)
                readLinks[i] = (ReadablePreset.ReadableLink) getValueAt(selRows[i], 0);
            return new LinkSelection(preset.getDeviceContext(), readLinks);
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.