Examples of ChoosePanelComboListener


Examples of cli_fmw.utils.chooser.ChoosePanelComboListener

            return;
        }
        ChoosePanelData sel = (ChoosePanelData)newValue;
        Iterator it = selectionListeners.iterator();
        while (it.hasNext()) {
            ChoosePanelComboListener l = (ChoosePanelComboListener) it.next();
            l.chooseDone(sel.type, sel.value);
        }
    }
View Full Code Here

Examples of cli_fmw.utils.chooser.ChoosePanelComboListener

        year = date.get(Calendar.YEAR);
        month = date.get(Calendar.MONTH) + 1;

        DirectoryLpu dir = DirectoryLocator.getDirectory(DirectoryLpu.class);
        lpuPanel.setData(dir, UserInfo.get().getCollaborator().getLpu(), "Поликлиника:");
        lpuPanel.addChoosePanelListener(new ChoosePanelComboListener() {
            @Override
            public void chooseDone(int type, int id) throws ChoosePanelComboException {

            }
        });
View Full Code Here

Examples of cli_fmw.utils.chooser.ChoosePanelComboListener

        tfService.setText(directionLocal.getService().getTitle());

        chooseComReason.setData(dirComReason, directionLocal.getCommitteeReason(),
                "Причина направления на КЭК");
        chooseComReason.addChoosePanelListener(new ChoosePanelComboListener() {

            @Override
            public void chooseDone(int type, int id) throws ChoosePanelComboException {
                try {
                    directionLocal.setCommitteeReason(dirComReason.getItemFromID(id));
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.