source: branches/autoquest-core-tasktrees-alignment/src/main/java/de/ugoe/cs/autoquest/tasktrees/treeifc/IEventTaskInstance.java @ 1734

Last change on this file since 1734 was 1734, checked in by rkrimmel, 10 years ago

Added automatically created javadoc, still needs to be commented properly though

File size: 1.5 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 de.ugoe.cs.autoquest.eventcore.Event;
18
19// TODO: Auto-generated Javadoc
20/**
21 * <p>
22 * the instance of an {@link IEventTask}. The instance refers to the concrete
23 * event it represents.
24 * </p>
25 *
26 * @author Patrick Harms
27 */
28public interface IEventTaskInstance extends ITaskInstance {
29
30        /**
31         * <p>
32         * clones this task instance by creating exact clones of itself. The
33         * referred task and event stay untouched
34         * </p>
35         *
36         * @return a clone of the task instance
37         */
38        @Override
39        public IEventTaskInstance clone();
40
41        /**
42         * <p>
43         * returns the event represented by this event task instance
44         * </p>.
45         *
46         * @return as described
47         */
48        public Event getEvent();
49
50        /**
51         * <p>
52         * returns the task related to the instance, i.e. the event task.
53         * </p>
54         *
55         * @return as described
56         */
57        public IEventTask getEventTask();
58
59}
Note: See TracBrowser for help on using the repository browser.