Coverage Report - org.kuali.student.contract.model.XmlType
 
Classes in this File Line Coverage Branch Coverage Complexity
XmlType
0%
0/38
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  
  * Implements the XML type definitions in the spreadsheet
 22  
  * @author nwright
 23  
  */
 24  
 public class XmlType implements Serializable
 25  
 {
 26  
 
 27  
  public static final String COMPLEX = "Complex";
 28  
  
 29  
  public XmlType ()
 30  0
  {
 31  0
  }
 32  
 
 33  
  private String name;
 34  
 
 35  
  /**
 36  
   * Get the value of name
 37  
   *
 38  
   * @return the value of object
 39  
   */
 40  
  public String getName ()
 41  
  {
 42  0
   return name;
 43  
  }
 44  
 
 45  
  /**
 46  
   * Set the value of name
 47  
   *
 48  
   * @param object new value of object
 49  
   */
 50  
  public void setName (String name)
 51  
  {
 52  0
   this.name = name;
 53  0
  }
 54  
 
 55  
  private String desc;
 56  
 
 57  
  /**
 58  
   * Get the value of description
 59  
   *
 60  
   * @return the value of description
 61  
   */
 62  
  public String getDesc ()
 63  
  {
 64  0
   return desc;
 65  
  }
 66  
 
 67  
  /**
 68  
   * Set the value of description
 69  
   *
 70  
   * @param description new value of description
 71  
   */
 72  
  public void setDesc (String desc)
 73  
  {
 74  0
   this.desc = desc;
 75  0
  }
 76  
 
 77  
  private String primitive;
 78  
 
 79  
  /**
 80  
   * Get the value of primitive
 81  
   *
 82  
   * @return the value of primitive
 83  
   */
 84  
  public String getPrimitive ()
 85  
  {
 86  0
   return primitive;
 87  
  }
 88  
 
 89  
  /**
 90  
   * Set the value of category
 91  
   *
 92  
   * @param primitive new value of primitive
 93  
   */
 94  
  public void setPrimitive (String primitive)
 95  
  {
 96  0
   this.primitive = primitive;
 97  0
  }
 98  
 
 99  
  private String url;
 100  
 
 101  
  public String getUrl ()
 102  
  {
 103  0
   return url;
 104  
  }
 105  
 
 106  
  public void setUrl (String url)
 107  
  {
 108  0
   this.url = url;
 109  0
  }
 110  
 
 111  
 
 112  
  private String examples;
 113  
 
 114  
  /**
 115  
   * Get the value of examples
 116  
   *
 117  
   * @return the value of examples
 118  
   */
 119  
  public String getExamples ()
 120  
  {
 121  0
   return examples;
 122  
  }
 123  
 
 124  
  /**
 125  
   * Set the value of examples
 126  
   *
 127  
   * @param examples new value of examples
 128  
   */
 129  
  public void setExamples (String examples)
 130  
  {
 131  0
   this.examples = examples;
 132  0
  }
 133  
 
 134  
   private boolean hasOwnType;
 135  
 
 136  
  /**
 137  
   * Get the value of hasOwnType
 138  
   *
 139  
   * @return the value of hasOwnType
 140  
   */
 141  
  public boolean hasOwnType ()
 142  
  {
 143  0
   return hasOwnType;
 144  
  }
 145  
 
 146  
  /**
 147  
   * Set the value of hasOwnType
 148  
   *
 149  
   * @param hasOwnType new value of hasOwnType
 150  
   */
 151  
  public void setHasOwnType (boolean hasOwnType)
 152  
  {
 153  0
   this.hasOwnType = hasOwnType;
 154  0
  }
 155  
 
 156  
 
 157  
 
 158  
  private boolean hasOwnState;
 159  
 
 160  
  /**
 161  
   * Get the value of hasOwnState
 162  
   *
 163  
   * @return the value of hasOwnState
 164  
   */
 165  
  public boolean hasOwnState ()
 166  
  {
 167  0
   return hasOwnState;
 168  
  }
 169  
 
 170  
  /**
 171  
   * Set the value of hasOwnState
 172  
   *
 173  
   * @param hasOwnState new value of hasOwnState
 174  
   */
 175  
  public void setHasOwnState (boolean hasOwnState)
 176  
  {
 177  0
   this.hasOwnState = hasOwnState;
 178  0
  }
 179  
 
 180  
 
 181  
 
 182  
  private boolean hasOwnCreateUpdate;
 183  
 
 184  
  /**
 185  
   * Get the value of hasOwnCreateUpdate
 186  
   *
 187  
   * @return the value of hasOwnCreateUpdate
 188  
   */
 189  
  public boolean hasOwnCreateUpdate ()
 190  
  {
 191  0
   return hasOwnCreateUpdate;
 192  
  }
 193  
 
 194  
  /**
 195  
   * Set the value of hasOwnCreateUpdate
 196  
   *
 197  
   * @param hasOwnCreateUpdate new value of hasOwnCreateUpdate
 198  
   */
 199  
  public void setHasOwnCreateUpdate (boolean hasOwnCreateUpdate)
 200  
  {
 201  0
   this.hasOwnCreateUpdate = hasOwnCreateUpdate;
 202  0
  }
 203  
 
 204  
  private String service;
 205  
 
 206  
  public String getService ()
 207  
  {
 208  0
   return service;
 209  
  }
 210  
 
 211  
  public void setService (String service)
 212  
  {
 213  0
   this.service = service;
 214  0
  }
 215  
 
 216  
 
 217  
  private String javaPackage;
 218  
 
 219  
  /**
 220  
   * Get the value of javaPackage
 221  
   *
 222  
   * @return the value of javaPackage
 223  
   */
 224  
  public String getJavaPackage ()
 225  
  {
 226  0
   return javaPackage;
 227  
  }
 228  
 
 229  
  /**
 230  
   * Set the value of javaPackage
 231  
   *
 232  
   * @param javaPackage new value of javaPackage
 233  
   */
 234  
  public void setJavaPackage (String javaPackage)
 235  
  {
 236  0
   this.javaPackage = javaPackage;
 237  0
  }
 238  
 
 239  
  private String comments;
 240  
 
 241  
  /**
 242  
   * Get the value of comments
 243  
   *
 244  
   * @return the value of comments
 245  
   */
 246  
  public String getComments ()
 247  
  {
 248  0
   return comments;
 249  
  }
 250  
 
 251  
  /**
 252  
   * Set the value of comments
 253  
   *
 254  
   * @param comments new value of comments
 255  
   */
 256  
  public void setComments (String comments)
 257  
  {
 258  0
   this.comments = comments;
 259  0
  }
 260  
 
 261  
 
 262  
  private String version;
 263  
 
 264  
  public String getVersion ()
 265  
  {
 266  0
   return version;
 267  
  }
 268  
 
 269  
  public void setVersion (String version)
 270  
  {
 271  0
   this.version = version;
 272  0
  }
 273  
 
 274  
 
 275  
 }