package scheduler.Edit;

import scheduler.ScheduleProject.*;

import java.util.Collection;

/**
 *
 * 
         The  Selection is the starting and ending index of the selection. 
          * 
 * @author 
 * @version 
 *
 **/

public class Selection {

     /** Default Constructor **/
     public Selection() {

     }

     protected int start_position;

     protected int end_position;

     protected String context;

}