source: trunk/autoquest-core-usability-evaluation/src/main/java/de/ugoe/cs/autoquest/usability/rules/patterns/visitors/StartsWithInteractionPatternVisitor.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
RevLine 
[1150]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
[1152]17import de.ugoe.cs.autoquest.tasktrees.treeifc.IEventTask;
[1150]18import de.ugoe.cs.autoquest.tasktrees.treeifc.IIteration;
19import de.ugoe.cs.autoquest.tasktrees.treeifc.ISequence;
[1152]20import de.ugoe.cs.autoquest.tasktrees.treeifc.ITask;
[1204]21import de.ugoe.cs.autoquest.usability.rules.patterns.InteractionPattern;
22import de.ugoe.cs.autoquest.usability.rules.patterns.InteractionPatternVisitor;
23import de.ugoe.cs.autoquest.usability.tasktree.filters.TaskTypeFilter;
[1150]24import de.ugoe.cs.autoquest.usability.util.PatternsVisitorUtil;
25
26/**
27 * <p>
28 * TODO comment
29 * </p>
30 *
31 * @author Alexander Deicke
32 */
[1204]33public class StartsWithInteractionPatternVisitor extends InteractionPatternVisitor {
[1150]34
35    /**
36     * <p>
37     * TODO: comment
38     * </p>
39     *
40     * @param startsWithPattern
41     */
[1204]42    public StartsWithInteractionPatternVisitor(InteractionPattern startsWithPattern, TaskTypeFilter taskType) {
[1150]43        this.containedPattern = startsWithPattern;
[1204]44        this.taskType = taskType;
[1150]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) {
[1161]51        this.present = containedPattern.containedIn(iteration); 
[1150]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) {
[1152]58        ITask firstTask = PatternsVisitorUtil.firstNodeOf(sequence.getChildren());
59        if(isEvent(firstTask)) {
[1161]60            this.present = containedPattern.containedIn(sequence);
[1150]61        } else {
[1161]62            this.present = containedPattern.containedIn(firstTask);
63        }   
[1150]64    }
65
[1152]66    private boolean isEvent(ITask firstTask) {
67        return firstTask instanceof IEventTask;
[1150]68    }
69
70}
Note: See TracBrowser for help on using the repository browser.