source: trunk/autoquest-core-usability-evaluation/src/main/java/de/ugoe/cs/autoquest/usability/rules/patterns/visitors/EndsWithEventVisitor.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
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
17import de.ugoe.cs.autoquest.tasktrees.treeifc.IIteration;
[1213]18import de.ugoe.cs.autoquest.tasktrees.treeifc.IOptional;
[1150]19import de.ugoe.cs.autoquest.tasktrees.treeifc.ISequence;
[1204]20import de.ugoe.cs.autoquest.usability.rules.patterns.InteractionPatternVisitor;
[1217]21import de.ugoe.cs.autoquest.usability.taskmodel.filter.types.EventTypeFilter;
22import de.ugoe.cs.autoquest.usability.taskmodel.filter.types.TaskTypeFilter;
[1150]23import de.ugoe.cs.autoquest.usability.util.PatternsVisitorUtil;
24
25/**
26 * <p>
27 * TODO comment
28 * </p>
29 *
30 * @author Alexander Deicke
31 */
[1204]32public class EndsWithEventVisitor extends InteractionPatternVisitor {
[1150]33
34    /**
35     * <p>
36     * TODO: comment
37     * </p>
[1217]38     *
[1150]39     * @param eventType
40     */
[1204]41    public EndsWithEventVisitor(EventTypeFilter eventType, TaskTypeFilter taskType) {
[1150]42        this.eventType = eventType;
[1204]43        this.taskType = taskType;
[1150]44    }
45
[1217]46    /*
47     * (non-Javadoc)
48     *
49     * @see
50     * de.ugoe.cs.autoquest.tasktrees.treeifc.NodeVisitor#visit(de.ugoe.cs.autoquest.tasktrees.treeifc
51     * .IIteration)
[1150]52     */
53    public void visit(IIteration iteration) {
[1152]54        iteration.getMarkedTask().accept(this);
[1150]55    }
56
[1217]57    /*
58     * (non-Javadoc)
59     *
60     * @see
61     * de.ugoe.cs.autoquest.tasktrees.treeifc.TaskVisitor#visit(de.ugoe.cs.autoquest.tasktrees.treeifc
62     * .IOptional)
[1213]63     */
64    public void visit(IOptional optional) {
65        optional.getMarkedTask().accept(this);
66    }
67
[1217]68    /*
69     * (non-Javadoc)
70     *
71     * @see
72     * de.ugoe.cs.autoquest.tasktrees.treeifc.NodeVisitor#visit(de.ugoe.cs.autoquest.tasktrees.treeifc
73     * .ISequence)
[1150]74     */
75    public void visit(ISequence sequence) {
[1217]76        PatternsVisitorUtil.lastSubTaskOf(sequence.getChildren()).accept(this);
[1150]77    }
[1217]78
[1150]79}
Note: See TracBrowser for help on using the repository browser.