/* * */ package de.ugoe.cs.autoquest.tasktrees.alignment.algorithms; import java.io.Serializable; // TODO: Auto-generated Javadoc /** * The Class MatchOccurence. */ public class MatchOccurrence implements Serializable { /** The Constant serialVersionUID. */ private static final long serialVersionUID = 6186633243145293781L; /** The startindex. */ private int startindex; /** The endindex. */ private int endindex; /** The sequence id. */ private int sequenceId; /** * Instantiates a new match occurence. * * @param startindex the startindex * @param endindex the endindex * @param sequenceId the sequence id */ public MatchOccurrence(int startindex, int endindex, int sequenceId) { this.startindex = startindex; this.endindex = endindex; this.sequenceId = sequenceId; } /** * Gets the endindex. * * @return the endindex */ public int getEndindex() { return endindex; } /** * Gets the sequence id. * * @return the sequence id */ public int getSequenceId() { return sequenceId; } /** * Gets the startindex. * * @return the startindex */ public int getStartindex() { return startindex; } /** * Sets the endindex. * * @param endindex the new endindex */ public void setEndindex(int endindex) { this.endindex = endindex; } /** * Sets the sequence id. * * @param sequenceId the new sequence id */ public void setSequenceId(int sequenceId) { this.sequenceId = sequenceId; } /** * Sets the startindex. * * @param startindex the new startindex */ public void setStartindex(int startindex) { this.startindex = startindex; } }