source: trunk/autoquest-ui-swt/src/main/java/de/ugoe/cs/autoquest/ui/swt/SWTHelpers.java @ 1153

Last change on this file since 1153 was 1094, checked in by pharms, 11 years ago
  • added a visualization for task trees
  • Property svn:mime-type set to text/plain
File size: 2.1 KB
Line 
1//   Copyright 2012 Georg-August-Universität Göttingen, Germany
2//
3//   Licensed under the Apache License, Version 2.0 (the "License");
4//   you may not use this file except in compliance with the License.
5//   You may obtain a copy of the License at
6//
7//       http://www.apache.org/licenses/LICENSE-2.0
8//
9//   Unless required by applicable law or agreed to in writing, software
10//   distributed under the License is distributed on an "AS IS" BASIS,
11//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12//   See the License for the specific language governing permissions and
13//   limitations under the License.
14
15package de.ugoe.cs.autoquest.ui.swt;
16
17import org.eclipse.swt.SWT;
18import org.eclipse.swt.widgets.List;
19import org.eclipse.swt.widgets.MessageBox;
20import org.eclipse.swt.widgets.Shell;
21
22import de.ugoe.cs.util.console.CommandExecuter;
23
24/**
25 * TODO comment
26 *
27 * @author Steffen Herbold, Patrick Harms
28 */
29public class SWTHelpers {
30
31    /**
32     *
33     */
34    public static boolean deleteSelectedFromStorage(final List list) {
35        String[] selectedStrings = list.getSelection();
36        if (selectedStrings.length == 0) {
37            return false;
38        }
39        else {
40            for (String selected : selectedStrings) {
41                String command = "deleteObject " + selected;
42                CommandExecuter.getInstance().exec(command);
43            }
44            return true;
45        }
46    }
47
48    /**
49     *
50     */
51    public static void noSelectionError(final Shell shell) {
52        MessageBox messageBox = new MessageBox(shell, SWT.ERROR);
53        messageBox.setMessage
54            ("No objects selected! Please select at least one object to execute this function");
55        messageBox.setText("Error");
56        messageBox.open();
57    }
58
59    /**
60     *
61     */
62    public static void moreThanOneSelectedError(final Shell shell) {
63        MessageBox messageBox = new MessageBox(shell, SWT.ERROR);
64        messageBox.setMessage("Too many objects selected for this function! Select only one!");
65        messageBox.setText("Error");
66        messageBox.open();
67    }
68
69}
Note: See TracBrowser for help on using the repository browser.