Package clips.analysis.individual

Examples of clips.analysis.individual.DialogRenderAnalyseIndividual


     * @throws generic.ClipsException
     */
    private void individualAnalyse(CheckupLocal checkup, CheckupSheduleLocal shedule) throws ClipsException {
        checkup.addContentStateListener(emptyListener);
        checkup.getSerrenLocal().addContentStateListener(emptyListener);
        DialogRenderAnalyseIndividual dialogIndividual = new DialogRenderAnalyseIndividual(MainWindow.mainWindow, checkup, getAuditManager());
        dialogIndividual.setVisible(true);
        ClipsException ex = null;
        if (dialogIndividual.getDlgResult() == ModalDialog.DLG_OK) {
            //Удаление чекапа из списка
            if (CollectionUtils.isContainObject(freeCheckupMap.get(checkup.getType()), checkup)) {
                //чекап был свободным
                CollectionUtils.removeObectByPtr(freeCheckupMap.get(checkup.getType()), checkup);
            } else {
View Full Code Here


        if (jTable1.getSelectedRowCount() > 0) {
            CheckupLocal checkUp = checkupList.get(jTable1.getSelectedRowSorted());
            try {
                checkUp.addContentStateListener(emptyListener);
                checkUp.getSerrenLocal().addContentStateListener(emptyListener);
                DialogRenderAnalyseIndividual dialog = new DialogRenderAnalyseIndividual(MainWindow.mainWindow, checkUp, getAuditManager());
                dialog.setVisible(true);
                jTable1.updateUI();
            } catch (ClipsException ex) {
                MessageBox.showException(ex);
            }
        }
View Full Code Here

TOP

Related Classes of clips.analysis.individual.DialogRenderAnalyseIndividual

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.