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

Last change on this file since 1204 was 1204, checked in by adeicke, 11 years ago

Renaming from UsagePattern? to InteractionPattern?.

  • 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 java.util.List;
18
19import de.ugoe.cs.autoquest.tasktrees.treeifc.IIteration;
20import de.ugoe.cs.autoquest.tasktrees.treeifc.ISequence;
21import de.ugoe.cs.autoquest.tasktrees.treeifc.ITask;
22import de.ugoe.cs.autoquest.usability.rules.patterns.InteractionPatternVisitor;
23import de.ugoe.cs.autoquest.usability.tasktree.filters.EventTypeFilter;
24import de.ugoe.cs.autoquest.usability.tasktree.filters.TaskTypeFilter;
25
26/**
27 * <p>
28 * TODO comment
29 * </p>
30 *
31 * @author Alexander Deicke
32 */
33public class ContainsEventVisitor extends InteractionPatternVisitor {
34
35    /**
36     * <p>
37     * TODO: comment
38     * </p>
39     *
40     * @param containsType
41     */
42    public ContainsEventVisitor(EventTypeFilter containsType, TaskTypeFilter taskType) {
43        this.eventType = containsType;
44        this.taskType = taskType;
45    }
46
47    /* (non-Javadoc)
48     * @see de.ugoe.cs.autoquest.tasktrees.treeifc.NodeVisitor#visit(de.ugoe.cs.autoquest.tasktrees.treeifc.IIteration)
49     */
50    public void visit(IIteration iteration) {
51        checkTaskAndReturnIfPatternIsPresent(iteration.getMarkedTask());
52    }
53
54    /* (non-Javadoc)
55     * @see de.ugoe.cs.autoquest.tasktrees.treeifc.NodeVisitor#visit(de.ugoe.cs.autoquest.tasktrees.treeifc.ISequence)
56     */
57    public void visit(ISequence sequence) {
58        checkAllChildrenAndReturnIfPatternIsPresent(sequence.getChildren());
59    }
60   
61    private void checkAllChildrenAndReturnIfPatternIsPresent(List<ITask> children) {
62        for (ITask task : children) {
63            if (checkTaskAndReturnIfPatternIsPresent(task)) {
64                break;
65            }
66        }
67    }
68
69    /**
70     *
71     */
72    private boolean checkTaskAndReturnIfPatternIsPresent(ITask task) {
73        task.accept(this);
74        return this.present;
75    }
76}
Note: See TracBrowser for help on using the repository browser.