/** * 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)); }
/** * Returns the name of this Model. * * @return The name of this Model. */ public String getName() { return m_model.getQualifiedName(); }