Package com.art.anette.client.ui.forms

Examples of com.art.anette.client.ui.forms.TaskSelection


     * Tätigkeit zur Liste hinzu. Diese wird zudem ausgewählt.
     *
     * @param e Wird nicht benutzt.
     */
    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) {
View Full Code Here

TOP

Related Classes of com.art.anette.client.ui.forms.TaskSelection

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.