Package reportgen.gui.genepanel.formatpanel.dlg.main

Examples of reportgen.gui.genepanel.formatpanel.dlg.main.TableFormatDlg


    private void addBtnActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_addBtnActionPerformed
        Context context = query.getContext3Stage(new NoNeedAtom());
        TableFormat tf = new TableFormat(context);
        try {
            TableFormatDlg dlg = new TableFormatDlg(parent, tf);

            dlg.setVisible(true);
            if (dlg.isOK()) {
                TableFormatList cols = query.getTableFormats();
                cols.add(tf);
                formatsTable.setModel(new FormatTableModel(query.getTableFormats()));
            }
        } catch (ReportException reportException) {
View Full Code Here


        if(index == -1) {
            return;
        }
        TableFormat tf = fields.get(index);
        try {
            TableFormatDlg dlg = new TableFormatDlg(parent, tf);
            dlg.setVisible(true);
            if (dlg.isOK()) {
                formatsTable.updateUI();
            }
        } catch (ReportException reportException) {
            Message.error(this, reportException);
        }
View Full Code Here

        try {
            TableFormat tf = new TableFormat(stream, context);
            for(Atom a:atoms) {
                a.refresh();
            }
            TableFormatDlg dlg = new TableFormatDlg(parent, tf);

            dlg.setVisible(true);
            if (dlg.isOK()) {
                TableFormatList cols = query.getTableFormats();
                cols.add(tf);
                formatsTable.setModel(new FormatTableModel(query.getTableFormats()));
            }
        } catch (ReportException reportException) {
View Full Code Here

TOP

Related Classes of reportgen.gui.genepanel.formatpanel.dlg.main.TableFormatDlg

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.