~yrke/tapaal/removeNetType

« back to all changes in this revision

Viewing changes to src/pipe/gui/ExportBatchDialog.java

MergedĀ lp:~yrke/tapaal/testbranch-syntaxOnlyChanges

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
 
60
60
public class ExportBatchDialog extends JDialog {
61
61
 
62
 
        private static final long serialVersionUID = 8346966786414688380L;
63
 
 
64
62
        private final static String TOOL_TIP_AddFilesButton = "Press to add nets to batch export";
65
63
        private final static String TOOL_TIP_RemoveFilesButton = "Press to remove the currently selected nets";
66
64
        private final static String TOOL_TIP_ClearFilesButton = "Press to remove all nets from list";
143
141
                
144
142
                tableModel = new ExportBatchResultTableModel();
145
143
                final JTable resultTable = new JTable(tableModel){
146
 
                        private static final long serialVersionUID = 8524549736351991872L;
147
144
 
148
145
                        public String getToolTipText(MouseEvent e) {
149
146
                                String tip= null;
542
539
                return renamedQueries;
543
540
                
544
541
        }
545
 
        private class ExportResultTableCellRenderer extends JLabel implements
 
542
        private static class ExportResultTableCellRenderer extends JLabel implements
546
543
        TableCellRenderer {
547
 
        private static final long serialVersionUID = -1054925029991763163L;
 
544
 
548
545
        Border unselectedBorder = null;
549
546
        Border selectedBorder = null;
550
547
        boolean isBordered = true;
620
617
                }
621
618
                
622
619
                private String generateDestinationTooltip(String[] result) {
623
 
                        String fullFilePath = result[1];
624
 
                        
625
 
                        return fullFilePath;
 
620
 
 
621
            return result[1];
626
622
                }
627
623
        }
628
624
}