Package nexj.core.util

Examples of nexj.core.util.HashHolderList


         return;
      }

      int nBaseCount = base.m_updateMappingSet.size();
      int nDerivedCount = m_updateMappingSet.size();
      HolderList updateMappingSet = new HashHolderList(nBaseCount + nDerivedCount);

      for (int i = 0; i < nBaseCount; i++)
      {
         Object baseUpdateMapping = base.m_updateMappingSet.get(i);
         UpdateMappingCase derivedUpdateMapping = (UpdateMappingCase)m_updateMappingSet.get(baseUpdateMapping);

         if (derivedUpdateMapping != null)
         {
            updateMappingSet.add(derivedUpdateMapping);
            m_updateMappingSet.remove(derivedUpdateMapping);
         }
         else
         {
            updateMappingSet.add(baseUpdateMapping);
         }
      }

      updateMappingSet.addAll(m_updateMappingSet);

      m_updateMappingSet = updateMappingSet;
   }
View Full Code Here

TOP

Related Classes of nexj.core.util.HashHolderList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.