Package clips.doctor.newEMC.init

Examples of clips.doctor.newEMC.init.EmcTreeModel


        this.clientLocal = (ClientLocal) clientLocal;
        this.emcLocal = this.clientLocal.getEMC();         //взяли у клиента ЕМС
        emcLocal.getDiseaseList();
        Date t1 = new Date();

        final DefaultTreeModel model = new EmcTreeModel(new ClientNode(this.clientLocal));
        model.addTreeModelListener(new TreeModelListenerImpl(model));
        treeEMC.setModel(model);
        treeEMC.setCellRenderer(new TreeCellRendererImpl());
        DefaultTreeSelectionModel selectionModel = new DefaultTreeSelectionModelImpl();
        selectionModel.setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
        treeEMC.setSelectionModel(selectionModel);
View Full Code Here

TOP

Related Classes of clips.doctor.newEMC.init.EmcTreeModel

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.