| 1 |  |   | 
  | 2 |  |   | 
  | 3 |  |   | 
  | 4 |  |   | 
  | 5 |  |   | 
  | 6 |  |   | 
  | 7 |  |   | 
  | 8 |  |   | 
  | 9 |  |   | 
  | 10 |  |   | 
  | 11 |  |   | 
  | 12 |  |   | 
  | 13 |  |   | 
  | 14 |  |   | 
  | 15 |  |   | 
  | 16 |  |  package org.kuali.student.common.ui.client.widgets.search; | 
  | 17 |  |   | 
  | 18 |  |  import org.kuali.student.common.ui.client.widgets.searchtable.ResultRow; | 
  | 19 |  |   | 
  | 20 |  |  public class SelectedResults { | 
  | 21 |  |      private String displayKey; | 
  | 22 |  |          private String returnKey; | 
  | 23 |  |          private ResultRow resultRow; | 
  | 24 |  |       | 
  | 25 | 0 |      public SelectedResults(String resultReturnKey, String resultDisplayKey) { | 
  | 26 | 0 |              displayKey = resultReturnKey; | 
  | 27 | 0 |              returnKey = resultDisplayKey; | 
  | 28 | 0 |      } | 
  | 29 |  |       | 
  | 30 | 0 |      public SelectedResults(String resultReturnKey, String resultDisplayKey, ResultRow row) { | 
  | 31 | 0 |              displayKey = resultReturnKey; | 
  | 32 | 0 |              returnKey = resultDisplayKey; | 
  | 33 | 0 |              this.resultRow = row; | 
  | 34 | 0 |      } | 
  | 35 |  |   | 
  | 36 |  |          public String getDisplayKey() { | 
  | 37 | 0 |                  return displayKey; | 
  | 38 |  |          } | 
  | 39 |  |   | 
  | 40 |  |          public String getReturnKey() { | 
  | 41 | 0 |                  return returnKey; | 
  | 42 |  |          } | 
  | 43 |  |   | 
  | 44 |  |          public void setResultRow(ResultRow resultRow) { | 
  | 45 | 0 |                  this.resultRow = resultRow; | 
  | 46 | 0 |          } | 
  | 47 |  |   | 
  | 48 |  |          public ResultRow getResultRow() { | 
  | 49 | 0 |                  return resultRow; | 
  | 50 |  |          }    | 
  | 51 |  |  } |