Package freegressi.tableur.QuickSort

Examples of freegressi.tableur.QuickSort.SortingDirection


      Tableur sheet = SpreadSheets.getInstance().getActiveSheet();
      List<String> names = sheet.donneListeNoms();
      JDialogSortColumn jdsc = new JDialogSortColumn(null, names);
      jdsc.setVisible(true);
      if (jdsc.isOk()) {
        SortingDirection sd = jdsc.getSortDirection();
        String name = jdsc.getSortName();
        SpreadSheets.getInstance().notifySheetsSortColumn(name, sd);
      }
      jdsc.dispose();
    }
View Full Code Here

TOP

Related Classes of freegressi.tableur.QuickSort.SortingDirection

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.