* @return An Iterator of ObjWithRefsDMO objects.
*/
@SuppressWarnings("unchecked")
// org.dmd.dms.util.GenUtility.formatMV(GenUtility.java:960)
public Iterator<ObjWithRefsREF> getObjRefMV(){
DmcTypeObjWithRefsREFMV attr = (DmcTypeObjWithRefsREFMV) get(DmtDMSAG.__objRefMV);
if (attr == null)
return( ((List<ObjWithRefsREF>) Collections.EMPTY_LIST).iterator() );
if (DmcOmni.instance().lazyResolution()){
if (attr.doLazyResolution(this)){
rem(attr.getAttributeInfo());
return( ((List<ObjWithRefsREF>) Collections.EMPTY_LIST).iterator() );
}
}
return(attr.getMV());
}