/**
 * Line.java
 */
package com.propfinancing.puzzle.slitherlink;

/**
 * Class to hold information on a line
 * @author Neil Aggarwal
 */
public class Line extends Component {
  /** Serial version */
  private static final long serialVersionUID = 1L;

  /** The starting point */
  private Point start;
  /** The ending point */
  private Point end;

  /** Default constructor */
  public Line() {
    super();
  }

  /**
   * @return the start
   */
  public Point getStart() {
    return start;
  }

  /**
   * @param start the start to set
   */
  public void setStart(Point start) {
    this.start = start;
  }

  /**
   * @return the end
   */
  public Point getEnd() {
    return end;
  }

  /**
   * @param end the end to set
   */
  public void setEnd(Point end) {
    this.end = end;
  }
}