source: trunk/quest-ui-core/src/main/java/de/ugoe/cs/quest/commands/misc/CMDstartTimer.java @ 733

Last change on this file since 733 was 733, checked in by sherbold, 12 years ago
  • refactored command packages in quest-ui-core
  • Property svn:mime-type set to text/plain
File size: 1.0 KB
Line 
1package de.ugoe.cs.quest.commands.misc;
2
3import java.security.InvalidParameterException;
4import java.util.List;
5
6import de.ugoe.cs.quest.CommandHelpers;
7import de.ugoe.cs.util.console.Command;
8import de.ugoe.cs.util.console.GlobalDataContainer;
9
10/**
11 * <p>
12 * Command to start a time.
13 * </p>
14 *
15 * @author Steffen Herbold
16 * @version 1.0
17 */
18public class CMDstartTimer implements Command {
19
20        /*
21         * (non-Javadoc)
22         *
23         * @see de.ugoe.cs.util.console.Command#run(java.util.List)
24         */
25        @Override
26        public void run(List<Object> parameters) {
27                String timerName;
28                try {
29                        timerName = (String) parameters.get(0);
30                } catch (Exception e) {
31                        throw new InvalidParameterException();
32                }
33                Long time = System.currentTimeMillis();
34                if (GlobalDataContainer.getInstance().addData(timerName, time)) {
35                        CommandHelpers.dataOverwritten(timerName);
36                }
37        }
38
39        /*
40         * (non-Javadoc)
41         *
42         * @see de.ugoe.cs.util.console.Command#help()
43         */
44        @Override
45        public String help() {
46                return "startTimer <timerName>";
47        }
48
49}
Note: See TracBrowser for help on using the repository browser.