Examples of JPdfSelectionTable


Examples of org.pdfsam.guiclient.commons.components.JPdfSelectionTable

    this.defaultOutputFileName = defaultOutputFileName;
  }

  @Override
  public void actionPerformed(ActionEvent e) {
    JPdfSelectionTable mainTable = selectionPanel.getMainTable();
    if (mainTable.getSelectedRowCount() == 1) {
      PdfSelectionTableItem item = ((AbstractPdfSelectionTableModel) mainTable.getModel()).getRow(mainTable.getSelectedRow());
      if (item != null) {
        String defaultOutputPath = item.getInputFile().getParent();
        if (!defaultOutputPath.endsWith(File.separator)) {
          defaultOutputPath += File.separator;
        }
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.