/** @return An Iterator of NameSpaceReference objects. */
  @SuppressWarnings("unchecked")
  // org.dmd.dms.util.GenUtility.formatMV(GenUtility.java:1112)
  public Iterator<NameSpaceReference> getNameSpace() {
    DmcTypeNameSpaceReferenceMV attr = (DmcTypeNameSpaceReferenceMV) get(DmwsdlDMSAG.__nameSpace);
    if (attr == null) return (((List<NameSpaceReference>) Collections.EMPTY_LIST).iterator());

    return (attr.getMV());
  }
  // org.dmd.dms.util.GenUtility.formatMV(GenUtility.java:1124)
  public NameSpaceReference getNthNameSpace(int i) {
    DmcTypeNameSpaceReferenceMV attr = (DmcTypeNameSpaceReferenceMV) get(DmwsdlDMSAG.__nameSpace);
    if (attr == null) return (null);

    return (attr.getMVnth(i));
  }