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

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


        askStopTask(taskController.getRunningTask());
    }

    private void askStopTask(Task t) {
        if (taskController.getDuration(t) > 59) {
            StringInput si = new StringInput();
            String comment = si.getInput() == null ? "" : si.getInput();
            stopTask(t, comment);
        } else if (JOptionPane.showConfirmDialog(null,
                lang.getString("DurationMinimum"),
                lang.getString("Confirmation"),
                JOptionPane.YES_NO_OPTION,
View Full Code Here

TOP

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

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.