Package clips.delegate.directory.simple.prorumble

Examples of clips.delegate.directory.simple.prorumble.DirectoryProrumbleItem


    if (res == JOptionPane.OK_OPTION) {//ок
        try {
            if (needRemove) {//вспомним надо ли было чё-то удалять
                removeProrumbleDays(selects);
            }
            DirectoryProrumbleItem proType = (DirectoryProrumbleItem) lstProrumbleTypes.getSelectedValue();
            for (int i = 0; i < selects.length; i++) {//шуршим по всем выделенным дням
                addProrumbleDay(selects[i] + 1, proType);//и добавляем пропуск
            }
        } catch (ClipsException ex) {
            MessageBox.showException(ex);
View Full Code Here


        mainTimeTablePanel.setLayout(ga);

        SelectorEditableExceptional<DirectoryProrumbleItem> types =
                DirectoryLocator.getDirectory(DirectoryProrumble.class).getItems();
        for (int i = 0; i < types.size(); i++) {
            DirectoryProrumbleItem item = types.get(i);
            options.put(item, new ComboOption(item));
        }

        SimpleRectangleEngine sre = new SimpleRectangleEngine();
        TimeOffset shiftBegin = new TimeOffset(7, 0);
View Full Code Here

TOP

Related Classes of clips.delegate.directory.simple.prorumble.DirectoryProrumbleItem

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.