Examples of ComResDlg


Examples of clips.kek.resolution.ComResDlg

                        }
                    }
                }
                else {
                    comResData = new CommitteeResolutionData(dirData);
                    ComResDlg dlg = new ComResDlg(MainWindow.mainWindow, comResData, getAuditManager());
                    dlg.setVisible(true);
                    if (dlg.getDlgResult() == ModalDialog.DLG_OK) {
                        comResData.setCollaborator(UserInfo.get().getCollaborator());
                        committee.getResolutionList(false).append(comResData);
                        DirectionLocal direction = dirData.getDirection(getAuditManager());
                        direction.addContentStateListener(emptyListener);
                        direction.setOrdered(true);
View Full Code Here

Examples of clips.kek.resolution.ComResDlg

    try {
        int row  = tabResolutionList.getSelectedRowSorted();
        if (row > -1) {
            CommitteeResolutionData data = comResList.get(row);
            CommitteeResolutionData comResData = (CommitteeResolutionData) data.clone();
            ComResDlg dlg = new ComResDlg(MainWindow.mainWindow, comResData, getAuditManager());
            dlg.setVisible(true);
            if (dlg.getDlgResult() == ModalDialog.DLG_OK) {
                data.setCollaborator(comResData.getCollaborator());
                data.setDescription(comResData.getDescription());
                data.setMkb(comResData.getMkb());
                data.setRendered(comResData.isRendered());
                data.setType(comResData.getType());
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.