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
Line 
1package de.ugoe.cs.autoquest.tasktrees.alignment.algorithms;
2
3public class MatchOccurence {
4        private int startindex;
5        private int endindex;
6        private int sequenceId;
7       
8        public MatchOccurence(int startindex, int endindex, int sequenceId) {
9                this.startindex = startindex;
10                this.endindex = endindex;
11                this.sequenceId = sequenceId;
12        }
13       
14        public int getEndindex() {
15                return endindex;
16        }
17
18        public void setEndindex(int endindex) {
19                this.endindex = endindex;
20        }
21
22
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        }
32
33        public void setSequenceId(int sequenceId) {
34                this.sequenceId = sequenceId;
35        }
36}
Note: See TracBrowser for help on using the repository browser.