/**
  * Returns the value of the '<em><b>Id</b></em>' attribute.
  * <!-- begin-user-doc -->
  *
  * <p>If the meaning of the '<em>Id</em>' attribute isn't clear, there really should be more of a
  * description here...
  * <!-- end-user-doc -->
  *
  * @return the value of the '<em>Id</em>' attribute.
  * @see #setId(long)
  */
 public long getId() {
   return DataUtil.toLong(super.getByIndex(INDEX_ID, true));
 }
 /**
  * Returns the value of the '<em><b>Name</b></em>' attribute.
  * <!-- begin-user-doc -->
  *
  * <p>If the meaning of the '<em>Name</em>' attribute isn't clear, there really should be more of
  * a description here...
  * <!-- end-user-doc -->
  *
  * @return the value of the '<em>Name</em>' attribute.
  * @see #setName(java.lang.String)
  */
 public String getName() {
   return DataUtil.toString(super.getByIndex(INDEX_NAME, true));
 }
 /**
  * Returns the value of the '<em><b>Description</b></em>' attribute.
  * <!-- begin-user-doc -->
  *
  * <p>If the meaning of the '<em>Description</em>' attribute isn't clear, there really should be
  * more of a description here...
  * <!-- end-user-doc -->
  *
  * @return the value of the '<em>Description</em>' attribute.
  * @see #setDescription(java.lang.String)
  */
 public String getDescription() {
   return DataUtil.toString(super.getByIndex(INDEX_DESCRIPTION, true));
 }
 /**
  * Returns the value of the '<em><b>Number</b></em>' attribute.
  * <!-- begin-user-doc -->
  *
  * <p>If the meaning of the '<em>Number</em>' attribute isn't clear, there really should be more
  * of a description here...
  * <!-- end-user-doc -->
  *
  * @return the value of the '<em>Number</em>' attribute.
  * @see #setNumber(java.lang.String)
  */
 public String getNumber() {
   return DataUtil.toString(super.getByIndex(INDEX_NUMBER, true));
 }