Package clips.dicom.dicom_emc

Examples of clips.dicom.dicom_emc.DialogSelectDicomObjects


    CheckupLocal checkup = getSelectedCheckup();

    if (checkup != null) {
        try {
            DialogSelectDicomObjects dsdo = new DialogSelectDicomObjects(MainWindow.mainWindow);
            dsdo.setVisible(true);
            if (dsdo.getDlgResult() == ModalDialog.DLG_OK) {
                List<AgregatorItem> items = dsdo.getItems();
                for (AgregatorItem agregatorItem : items) {
                    checkup.addChild(new CheckupDICOMLocal(checkup, agregatorItem));
                }
            }
        } catch (ClipsException ex) {
View Full Code Here

TOP

Related Classes of clips.dicom.dicom_emc.DialogSelectDicomObjects

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.