Package clips.delegate.directory.complex

Examples of clips.delegate.directory.complex.DirectoryMKB10.toArray()


    public DirectoryDialogMKB10(boolean multipleSelected, Object selected) throws ClipsException {
        super(multipleSelected, selected, "МКБ 10", null);
        initComponents();
       
        DirectoryMKB10 mkb10 = DirectoryLocator.getDirectory(DirectoryMKB10.class, false);
        setData(mkb10.toArray(true, false), tree, selectBtn, cancelBtn);
       
        searchBy.addItem(bytitle);
        searchBy.addItem(bycode);
        searchBy.addItem(bymask);
               
View Full Code Here


       
        searchBy.addItem(bytitle);
        searchBy.addItem(bycode);
        searchBy.addItem(bymask);
               
        DirectoryItemRO array[] = mkb10.toArray(false, true);
        for(int i=0; i<array.length; i++) {
            searchBy.addItem(array[i]);
        }       
       
        searchBy.setSelectedItem(bytitle);
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.