source: trunk/autoquest-core-tasktrees/src/main/java/de/ugoe/cs/autoquest/tasktrees/treeifc/ITask.java @ 1357

Last change on this file since 1357 was 1357, checked in by pharms, 10 years ago
  • improved logging
File size: 3.2 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.tasktrees.treeifc;
16
17import java.io.Serializable;
18import java.util.Collection;
19
20/**
21 * <p>
22 * A task represents a model for events that occur if the user interacts with a software for
23 * achieving a specific goal. A task can be a single event or a complex structure of events
24 * and temporal relationships defining the event order. Tasks may especially refer to other tasks
25 * to create task structures similar to trees. These structures fully define in which ways the
26 * events that form the task can occur. However, the structure of a task is not necessarily a
27 * tree as task structures may be reused several times in larger scale task structures.
28 * </p>
29 *
30 * @author Patrick Harms
31 */
32public interface ITask extends Cloneable, Serializable {
33
34    /**
35     * <p>
36     * every task is assigned a unique id which is returned by this method. The id is unique for
37     * the current runtime.
38     * </p>
39     *
40     * @return as described
41     */
42    public int getId();
43
44    /**
45     * <p>
46     * returns a human readable type for the task.
47     * </p>
48     *
49     * @return as described
50     */
51    public String getType();
52
53    /**
54     * <p>
55     * returns a human readable description for the task.
56     * </p>
57     *
58     * @return as described
59     */
60    public String getDescription();
61
62    /**
63     * <p>
64     * returns a collection of all observed instances of this task
65     * </p>
66     *
67     * @return as described
68     */
69    public Collection<ITaskInstance> getInstances();
70
71    /**
72     * <p>
73     * checks whether this task is equal to another one. Task equality is only given, if two
74     * tasks have the same id. This means, that this method must only return true if the other
75     * task is either the same object or a clone of it.
76     * </p>
77     *
78     * @return as described
79     */
80    public boolean equals(ITask task);
81
82    /**
83     * <p>
84     * returns a hash code for the task, which is usually the id returned by {@link #getId()}.
85     * </p>
86     *
87     * @return as described
88     */
89    public int hashCode();
90
91    /**
92     * <p>
93     * returns an exact copy of this task. The clone has the same id. If the task has
94     * children, they are cloned as well. A call on the method {@link #equals(ITask)} with the
95     * result of this method must return true.
96     * </p>
97     *
98     * @return as described
99     */
100    public ITask clone();
101   
102    /**
103     * <p>
104     * implements the visitor pattern to be able to process tasks and their children.
105     * </p>
106     *
107     * @param visitor the visitor used to process the task
108     */
109    public void accept(ITaskVisitor visitor);
110   
111}
Note: See TracBrowser for help on using the repository browser.