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

Last change on this file since 1213 was 1213, checked in by pharms, 11 years ago
  • added Optional to visitor pattern
  • Property svn:mime-type set to text/plain
File size: 2.8 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 java.util.List;
18
19import de.ugoe.cs.autoquest.tasktrees.treeifc.IIteration;
20import de.ugoe.cs.autoquest.tasktrees.treeifc.IOptional;
21import de.ugoe.cs.autoquest.tasktrees.treeifc.ISequence;
22import de.ugoe.cs.autoquest.tasktrees.treeifc.ITask;
23import de.ugoe.cs.autoquest.usability.rules.patterns.InteractionPatternVisitor;
24import de.ugoe.cs.autoquest.usability.tasktree.filters.EventTypeFilter;
25import de.ugoe.cs.autoquest.usability.tasktree.filters.TaskTypeFilter;
26
27/**
28 * <p>
29 * TODO comment
30 * </p>
31 *
32 * @author Alexander Deicke
33 */
34public class ContainsEventVisitor extends InteractionPatternVisitor {
35
36    /**
37     * <p>
38     * TODO: comment
39     * </p>
40     *
41     * @param containsType
42     */
43    public ContainsEventVisitor(EventTypeFilter containsType, TaskTypeFilter taskType) {
44        this.eventType = containsType;
45        this.taskType = taskType;
46    }
47
48    /* (non-Javadoc)
49     * @see de.ugoe.cs.autoquest.tasktrees.treeifc.NodeVisitor#visit(de.ugoe.cs.autoquest.tasktrees.treeifc.IIteration)
50     */
51    public void visit(IIteration iteration) {
52        checkTaskAndReturnIfPatternIsPresent(iteration.getMarkedTask());
53    }
54
55    /* (non-Javadoc)
56     * @see de.ugoe.cs.autoquest.tasktrees.treeifc.TaskVisitor#visit(de.ugoe.cs.autoquest.tasktrees.treeifc.IOptional)
57     */
58    public void visit(IOptional optional) {
59        checkTaskAndReturnIfPatternIsPresent(optional.getMarkedTask());
60    }
61
62    /* (non-Javadoc)
63     * @see de.ugoe.cs.autoquest.tasktrees.treeifc.NodeVisitor#visit(de.ugoe.cs.autoquest.tasktrees.treeifc.ISequence)
64     */
65    public void visit(ISequence sequence) {
66        checkAllChildrenAndReturnIfPatternIsPresent(sequence.getChildren());
67    }
68   
69    private void checkAllChildrenAndReturnIfPatternIsPresent(List<ITask> children) {
70        for (ITask task : children) {
71            if (checkTaskAndReturnIfPatternIsPresent(task)) {
72                break;
73            }
74        }
75    }
76
77    /**
78     *
79     */
80    private boolean checkTaskAndReturnIfPatternIsPresent(ITask task) {
81        task.accept(this);
82        return this.present;
83    }
84}
Note: See TracBrowser for help on using the repository browser.