source: trunk/autoquest-core-usability-evaluation/src/main/java/de/ugoe/cs/autoquest/usability/rules/patterns/visitors/StartsWithInteractionPatternVisitor.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: 3.0 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;
[1213]19import de.ugoe.cs.autoquest.tasktrees.treeifc.IOptional;
[1150]20import de.ugoe.cs.autoquest.tasktrees.treeifc.ISequence;
[1152]21import de.ugoe.cs.autoquest.tasktrees.treeifc.ITask;
[1204]22import de.ugoe.cs.autoquest.usability.rules.patterns.InteractionPattern;
23import de.ugoe.cs.autoquest.usability.rules.patterns.InteractionPatternVisitor;
[1217]24import de.ugoe.cs.autoquest.usability.taskmodel.filter.types.TaskTypeFilter;
[1150]25import de.ugoe.cs.autoquest.usability.util.PatternsVisitorUtil;
26
27/**
28 * <p>
29 * TODO comment
30 * </p>
31 *
32 * @author Alexander Deicke
33 */
[1204]34public class StartsWithInteractionPatternVisitor extends InteractionPatternVisitor {
[1150]35
36    /**
37     * <p>
38     * TODO: comment
39     * </p>
[1217]40     *
[1150]41     * @param startsWithPattern
42     */
[1217]43    public StartsWithInteractionPatternVisitor(InteractionPattern startsWithPattern,
44                                               TaskTypeFilter taskType)
45    {
[1150]46        this.containedPattern = startsWithPattern;
[1204]47        this.taskType = taskType;
[1150]48    }
49
[1217]50    /*
51     * (non-Javadoc)
52     *
53     * @see
54     * de.ugoe.cs.autoquest.tasktrees.treeifc.NodeVisitor#visit(de.ugoe.cs.autoquest.tasktrees.treeifc
55     * .IIteration)
[1150]56     */
57    public void visit(IIteration iteration) {
[1217]58        this.present = containedPattern.containedIn(iteration);
[1150]59    }
60
[1217]61    /*
62     * (non-Javadoc)
63     *
64     * @see
65     * de.ugoe.cs.autoquest.tasktrees.treeifc.TaskVisitor#visit(de.ugoe.cs.autoquest.tasktrees.treeifc
66     * .IOptional)
[1213]67     */
68    public void visit(IOptional optional) {
[1217]69        this.present = containedPattern.containedIn(optional);
[1213]70    }
71
[1217]72    /*
73     * (non-Javadoc)
74     *
75     * @see
76     * de.ugoe.cs.autoquest.tasktrees.treeifc.NodeVisitor#visit(de.ugoe.cs.autoquest.tasktrees.treeifc
77     * .ISequence)
[1150]78     */
79    public void visit(ISequence sequence) {
[1217]80        ITask firstTask = PatternsVisitorUtil.firstSubtaskOf(sequence.getChildren());
81        if (isEvent(firstTask)) {
[1161]82            this.present = containedPattern.containedIn(sequence);
[1217]83        }
84        else {
[1161]85            this.present = containedPattern.containedIn(firstTask);
[1217]86        }
[1150]87    }
88
[1152]89    private boolean isEvent(ITask firstTask) {
90        return firstTask instanceof IEventTask;
[1150]91    }
92
93}
Note: See TracBrowser for help on using the repository browser.