Example #1
0
 /**
  * Returns the DataType with the given name.
  *
  * @param name The name of the datatype to get.
  * @return The DataType with the given name.
  */
 public DataType getDataType(String name) {
   return ObjectType.wrap(m_root.getObjectType(m_model.getName() + "." + name));
 }
Example #2
0
 /**
  * Returns the name of this Model.
  *
  * @return The name of this Model.
  */
 public String getName() {
   return m_model.getQualifiedName();
 }