Package clips.delegate.doctor.checkup

Examples of clips.delegate.doctor.checkup.CheckupLocal.addChild()


            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) {
            MessageBox.showException(ex);
        }
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.