Package com.art.anette.client.controller

Examples of com.art.anette.client.controller.TaskComboBoxModel


    private void btnBrowseTasksActionPerformed(ActionEvent e) {
        TaskSelection ts = new TaskSelection(logic);
        Task t = ts.getTask();
        if (t != null) {
            ControlContainer cc = controls.get(0);
            TaskComboBoxModel tcm = (TaskComboBoxModel) cc.cbTasks.getModel();
            tcm.addTask(t);
            for (ControlContainer ccc : controls) {
                ccc.cbTasks.setSelectedIndex(cc.cbTasks.getItemCount() - 1);
            }
        }
    }
View Full Code Here

TOP

Related Classes of com.art.anette.client.controller.TaskComboBoxModel

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.