Package cli_fmw.utils.chooser

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


        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

        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

Related Classes of cli_fmw.utils.chooser.ChoosePanelComboListener

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.