Coverage Report - org.kuali.student.contract.model.SearchRow
 
Classes in this File Line Coverage Branch Coverage Complexity
SearchRow
0%
0/57
N/A
1
 
 1  
 /*
 2  
  * Copyright 2009 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may        obtain a copy of the License at
 7  
  *
 8  
  *         http://www.osedu.org/licenses/ECL-2.0
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.student.contract.model;
 17  
 
 18  
 import java.io.Serializable;
 19  
 
 20  
 /**
 21  
  * Models a single dictionary entry
 22  
  * @author nwright
 23  
  */
 24  
 public class SearchRow implements Serializable,
 25  
                                   Cloneable
 26  
 {
 27  
 
 28  
  public SearchRow ()
 29  
  {
 30  0
   super ();
 31  0
  }
 32  
 
 33  
  private int rowNumber;
 34  
 
 35  
  /**
 36  
   * Get the value of rowNumber
 37  
   *
 38  
   * @return the value of row
 39  
   */
 40  
  public int getRowNumber ()
 41  
  {
 42  0
   return rowNumber;
 43  
  }
 44  
 
 45  
  /**
 46  
   * Set the value of rowNumber
 47  
   *
 48  
   * @param rowNumber new value of rowNumber
 49  
   */
 50  
  public void setRowNumber (int rowNumber)
 51  
  {
 52  0
   this.rowNumber = rowNumber;
 53  0
  }
 54  
 
 55  
  private String key;
 56  
 
 57  
  /**
 58  
   * Get the value of key
 59  
   *
 60  
   * @return the value of key
 61  
   */
 62  
  public String getKey ()
 63  
  {
 64  0
   return key;
 65  
  }
 66  
 
 67  
  private String lookupKey;
 68  
 
 69  
  /**
 70  
   * Get the value of lookupKey
 71  
   *
 72  
   * @return the value of lookupKey
 73  
   */
 74  
  public String getLookupKey ()
 75  
  {
 76  0
   return lookupKey;
 77  
  }
 78  
 
 79  
  /**
 80  
   * Set the value of lookupKey
 81  
   *
 82  
   * @param lookupKey new value of lookupKey
 83  
   */
 84  
  public void setLookupKey (String lookupKey)
 85  
  {
 86  0
   this.lookupKey = lookupKey;
 87  0
  }
 88  
 
 89  
  private String type;
 90  
 
 91  
  /**
 92  
   * Get the value of type
 93  
   *
 94  
   * @return the value of type
 95  
   */
 96  
  public String getType ()
 97  
  {
 98  0
   return type;
 99  
  }
 100  
 
 101  
  /**
 102  
   * Set the value of type
 103  
   *
 104  
   * @param type new value of type
 105  
   */
 106  
  public void setType (String type)
 107  
  {
 108  0
   this.type = type;
 109  0
  }
 110  
 
 111  
  /**
 112  
   * Set the value of key
 113  
   *
 114  
   * @param key new value of key
 115  
   */
 116  
  public void setKey (String key)
 117  
  {
 118  0
   this.key = key;
 119  0
  }
 120  
 
 121  
  private String name;
 122  
 
 123  
  /**
 124  
   * Get the value of name
 125  
   *
 126  
   * @return the value of name
 127  
   */
 128  
  public String getName ()
 129  
  {
 130  0
   return name;
 131  
  }
 132  
 
 133  
  /**
 134  
   * Set the value of name
 135  
   *
 136  
   * @param name new value of name
 137  
   */
 138  
  public void setName (String name)
 139  
  {
 140  0
   this.name = name;
 141  0
  }
 142  
 
 143  
  private String description;
 144  
  private String dataType;
 145  
 
 146  
  /**
 147  
   * Get the value of dataType
 148  
   *
 149  
   * @return the value of dataType
 150  
   */
 151  
  public String getDataType ()
 152  
  {
 153  0
   return dataType;
 154  
  }
 155  
 
 156  
  /**
 157  
   * Set the value of dataType
 158  
   *
 159  
   * @param dataType new value of dataType
 160  
   */
 161  
  public void setDataType (String dataType)
 162  
  {
 163  0
   this.dataType = dataType;
 164  0
  }
 165  
 
 166  
  private String hidden;
 167  
 
 168  
  /**
 169  
   * Get the value of hidden
 170  
   *
 171  
   * @return the value of hidden
 172  
   */
 173  
  public String getHidden ()
 174  
  {
 175  0
   return hidden;
 176  
  }
 177  
 
 178  
  private String usage;
 179  
 
 180  
  /**
 181  
   * Get the value of usage
 182  
   *
 183  
   * @return the value of usage
 184  
   */
 185  
  public String getUsage ()
 186  
  {
 187  0
   return usage;
 188  
  }
 189  
 
 190  
  private String widget;
 191  
 
 192  
  /**
 193  
   * Get the value of widget
 194  
   *
 195  
   * @return the value of widget
 196  
   */
 197  
  public String getWidget ()
 198  
  {
 199  0
   return widget;
 200  
  }
 201  
 
 202  
  /**
 203  
   * Set the value of widget
 204  
   *
 205  
   * @param widget new value of widget
 206  
   */
 207  
  public void setWidget (String widget)
 208  
  {
 209  0
   this.widget = widget;
 210  0
  }
 211  
 
 212  
  private String optional;
 213  
 
 214  
  /**
 215  
   * Get the value of optional
 216  
   *
 217  
   * @return the value of optional
 218  
   */
 219  
  public String getOptional ()
 220  
  {
 221  0
   return optional;
 222  
  }
 223  
 
 224  
  private String caseSensitive;
 225  
 
 226  
  /**
 227  
   * Get the value of caseSensitive
 228  
   *
 229  
   * @return the value of caseSensitive
 230  
   */
 231  
  public String getCaseSensitive ()
 232  
  {
 233  0
   return caseSensitive;
 234  
  }
 235  
 
 236  
  /**
 237  
   * Set the value of caseSensitive
 238  
   *
 239  
   * @param caseSensitive new value of caseSensitive
 240  
   */
 241  
  public void setCaseSensitive (String caseSensitive)
 242  
  {
 243  0
   this.caseSensitive = caseSensitive;
 244  0
  }
 245  
 
 246  
  private String writeAccess;
 247  
 
 248  
  /**
 249  
   * Get the value of writeAccess
 250  
   *
 251  
   * @return the value of writeAccess
 252  
   */
 253  
  public String getWriteAccess ()
 254  
  {
 255  0
   return writeAccess;
 256  
  }
 257  
 
 258  
  /**
 259  
   * Set the value of writeAccess
 260  
   *
 261  
   * @param writeAccess new value of writeAccess
 262  
   */
 263  
  public void setWriteAccess (String writeAccess)
 264  
  {
 265  0
   this.writeAccess = writeAccess;
 266  0
  }
 267  
 
 268  
  private String defaultValue;
 269  
 
 270  
  /**
 271  
   * Get the value of defaultValue
 272  
   *
 273  
   * @return the value of defaultValue
 274  
   */
 275  
  public String getDefaultValue ()
 276  
  {
 277  0
   return defaultValue;
 278  
  }
 279  
 
 280  
  /**
 281  
   * Set the value of defaultValue
 282  
   *
 283  
   * @param defaultValue new value of defaultValue
 284  
   */
 285  
  public void setDefaultValue (String defaultValue)
 286  
  {
 287  0
   this.defaultValue = defaultValue;
 288  0
  }
 289  
 
 290  
  private String childLookup;
 291  
 
 292  
  /**
 293  
   * Get the value of childLookup
 294  
   *
 295  
   * @return the value of childLookup
 296  
   */
 297  
  public String getChildLookup ()
 298  
  {
 299  0
   return childLookup;
 300  
  }
 301  
 
 302  
  /**
 303  
   * Set the value of childLookup
 304  
   *
 305  
   * @param childLookup new value of childLookup
 306  
   */
 307  
  public void setChildLookup (String childLookup)
 308  
  {
 309  0
   this.childLookup = childLookup;
 310  0
  }
 311  
 
 312  
  /**
 313  
   * Set the value of optional
 314  
   *
 315  
   * @param optional new value of optional
 316  
   */
 317  
  public void setOptional (String optional)
 318  
  {
 319  0
   this.optional = optional;
 320  0
  }
 321  
 
 322  
  /**
 323  
   * Set the value of usage
 324  
   *
 325  
   * @param usage new value of usage
 326  
   */
 327  
  public void setUsage (String usage)
 328  
  {
 329  0
   this.usage = usage;
 330  0
  }
 331  
 
 332  
  /**
 333  
   * Set the value of hidden
 334  
   *
 335  
   * @param hidden new value of hidden
 336  
   */
 337  
  public void setHidden (String hidden)
 338  
  {
 339  0
   this.hidden = hidden;
 340  0
  }
 341  
 
 342  
  /**
 343  
   * Get the value of description
 344  
   *
 345  
   * @return the value of description
 346  
   */
 347  
  public String getDescription ()
 348  
  {
 349  0
   return description;
 350  
  }
 351  
 
 352  
  /**
 353  
   * Set the value of description
 354  
   *
 355  
   * @param description new value of description
 356  
   */
 357  
  public void setDescription (String description)
 358  
  {
 359  0
   this.description = description;
 360  0
  }
 361  
 
 362  
  private String status;
 363  
 
 364  
  /**
 365  
   * Get the value of status
 366  
   *
 367  
   * @return the value of status
 368  
   */
 369  
  public String getStatus ()
 370  
  {
 371  0
   return status;
 372  
  }
 373  
 
 374  
  /**
 375  
   * Set the value of status
 376  
   *
 377  
   * @param status new value of status
 378  
   */
 379  
  public void setStatus (String status)
 380  
  {
 381  0
   this.status = status;
 382  0
  }
 383  
 
 384  
  private String comments;
 385  
 
 386  
  /**
 387  
   * Get the value of comments
 388  
   *
 389  
   * @return the value of comments
 390  
   */
 391  
  public String getComments ()
 392  
  {
 393  0
   return comments;
 394  
  }
 395  
 
 396  
  /**
 397  
   * Set the value of comments
 398  
   *
 399  
   * @param comments new value of comments
 400  
   */
 401  
  public void setComments (String comments)
 402  
  {
 403  0
   this.comments = comments;
 404  0
  }
 405  
 
 406  
  @Override
 407  
  protected Object clone ()
 408  
   throws CloneNotSupportedException
 409  
  {
 410  0
   return super.clone ();
 411  
  }
 412  
 
 413  
  private String service;
 414  
 
 415  
  /**
 416  
   * Get the value of service
 417  
   *
 418  
   * @return the value of service
 419  
   */
 420  
  public String getService ()
 421  
  {
 422  0
   return service;
 423  
  }
 424  
 
 425  
  /**
 426  
   * Set the value of service
 427  
   *
 428  
   * @param service new value of service
 429  
   */
 430  
  public void setService (String service)
 431  
  {
 432  0
   this.service = service;
 433  0
  }
 434  
 
 435  
 }