source: trunk/autoquest-core-usability-evaluation/src/main/java/de/ugoe/cs/autoquest/usability/rules/patterns/visitors/StartsWithEventVisitor.java @ 1217

Last change on this file since 1217 was 1217, checked in by adeicke, 11 years ago
  • Added proper formating and JavaDoc?.
  • Several renaming refactorings.
  • Property svn:mime-type set to text/plain
File size: 2.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.usability.rules.patterns.visitors;
16
17import de.ugoe.cs.autoquest.tasktrees.treeifc.IIteration;
18import de.ugoe.cs.autoquest.tasktrees.treeifc.IOptional;
19import de.ugoe.cs.autoquest.tasktrees.treeifc.ISequence;
20import de.ugoe.cs.autoquest.usability.rules.patterns.InteractionPatternVisitor;
21import de.ugoe.cs.autoquest.usability.taskmodel.filter.types.EventTypeFilter;
22import de.ugoe.cs.autoquest.usability.taskmodel.filter.types.TaskTypeFilter;
23import de.ugoe.cs.autoquest.usability.util.PatternsVisitorUtil;
24
25/**
26 * <p>
27 * TODO comment
28 * </p>
29 *
30 * @author Alexander Deicke
31 */
32public class StartsWithEventVisitor extends InteractionPatternVisitor {
33
34    /**
35     * <p>
36     * TODO: comment
37     * </p>
38     *
39     * @param eventType
40     */
41    public StartsWithEventVisitor(EventTypeFilter eventType, TaskTypeFilter taskType) {
42        this.eventType = eventType;
43        this.taskType = taskType;
44    }
45
46    /*
47     * (non-Javadoc)
48     *
49     * @see
50     * de.ugoe.cs.autoquest.tasktrees.treeifc.NodeVisitor#visit(de.ugoe.cs.autoquest.tasktrees.treeifc
51     * .IIteration)
52     */
53    public void visit(IIteration iteration) {
54        iteration.getMarkedTask().accept(this);
55    }
56
57    /*
58     * (non-Javadoc)
59     *
60     * @see
61     * de.ugoe.cs.autoquest.tasktrees.treeifc.TaskVisitor#visit(de.ugoe.cs.autoquest.tasktrees.treeifc
62     * .IOptional)
63     */
64    public void visit(IOptional optional) {
65        optional.getMarkedTask().accept(this);
66    }
67
68    /*
69     * (non-Javadoc)
70     *
71     * @see
72     * de.ugoe.cs.autoquest.tasktrees.treeifc.NodeVisitor#visit(de.ugoe.cs.autoquest.tasktrees.treeifc
73     * .ISequence)
74     */
75    public void visit(ISequence sequence) {
76        PatternsVisitorUtil.firstSubtaskOf(sequence.getChildren()).accept(this);
77    }
78
79}
Note: See TracBrowser for help on using the repository browser.