source: branches/autoquest-core-tasktrees-alignment/src/main/java/de/ugoe/cs/autoquest/tasktrees/alignment/algorithms/MatchOccurence.java @ 1657

Last change on this file since 1657 was 1657, checked in by rkrimmel, 10 years ago

About to fix bug in containsPattern

File size: 731 bytes
RevLine 
[1620]1package de.ugoe.cs.autoquest.tasktrees.alignment.algorithms;
2
3public class MatchOccurence {
4        private int startindex;
[1657]5        private int endindex;
[1620]6        private int sequenceId;
[1657]7       
8        public MatchOccurence(int startindex, int endindex, int sequenceId) {
[1620]9                this.startindex = startindex;
[1657]10                this.endindex = endindex;
[1620]11                this.sequenceId = sequenceId;
12        }
[1657]13       
14        public int getEndindex() {
15                return endindex;
16        }
17
18        public void setEndindex(int endindex) {
19                this.endindex = endindex;
20        }
21
22
[1620]23        public int getStartindex() {
24                return startindex;
25        }
26        public void setStartindex(int startindex) {
27                this.startindex = startindex;
28        }
29        public int getSequenceId() {
30                return sequenceId;
31        }
[1657]32
33        public void setSequenceId(int sequenceId) {
34                this.sequenceId = sequenceId;
35        }
[1620]36}
Note: See TracBrowser for help on using the repository browser.