Package nexj.core.util

Examples of nexj.core.util.HashTab


         if ((nFlags & TRACK) != 0 && !m_container.isLoading())
         {
            if (m_changeMap == null)
            {
               m_changeMap = new HashTab(4);
            }

            UnitOfWork uow = m_container.getInvocationContext().getUnitOfWork();
            Change change = new Change(false, uow);
            Change oldChange = (Change)m_changeMap.put(instance, change);
View Full Code Here


         {
            s_logger.debug("Parsing object message \"" + message.getName() + "\"");
            s_logger.dump(in);
         }

         m_instanceMap = new HashTab();
         m_processedSet = new HashTab2D();

         TransferObject tobj = (TransferObject)transfer(in.getObject(), message.getRoot());

         GenericServer.auditResponse(m_instanceMap, m_context);
View Full Code Here

         s_logger.debug("Identified the object message as \"" + message.getName() + "\"");
      }
     
      try
      {
         m_instanceMap = new HashTab();
         m_processedSet = new HashTab2D();
        
         TransferObject tobj = (TransferObject)transfer(in.getObject(), message.getRoot());

         GenericServer.auditResponse(m_instanceMap, m_context);
View Full Code Here

     
      if (obj instanceof TransferObject)
      {
         if (isFetchInstance())
         {
            instance = (Instance)RPCUtil.instantiateClean(srcTobj, new HashTab(), m_context);
         }
         else
         {
            TransferObject tobj = new TransferObject(sMessageName, composite.getPartCount());
View Full Code Here

         if (value instanceof Instance || value instanceof InstanceList)
         {
            if (identityMap == null)
            {
               identityMap = new HashTab();
            }

            value = RPCUtil.transferState(value, null, identityMap,
               (m_nSafeMode == FAIL || m_nSafeMode == RAW) ? RPCUtil.TF_ALL : RPCUtil.TF_ALL | RPCUtil.TF_SERIALIZABLE);
         }
View Full Code Here

   {
      List instanceToDeleteList = null;

      if (m_instanceListByCompositeMap == null)
      {
         m_instanceListByCompositeMap = new HashTab();
      }
      else
      {
         instanceToDeleteList = (List)m_instanceListByCompositeMap.get(composite);
      }
View Full Code Here

      assert sAttribute != null;
      assert t != null;

      if (m_exceptionMap == null)
      {
         m_exceptionMap = new HashTab(4);
      }

      m_exceptionMap.put(sAttribute, t);

      if (getCause() == null && t != this)
View Full Code Here

    */
   public void track(Metaclass metaclass)
   {
      if (m_classChangeMap == null)
      {
         m_classChangeMap = new HashTab();
      }

      if (m_classChangeMap.get(metaclass) == null)
      {
         m_classChangeMap.put(metaclass, new HashTab());
      }
   }
View Full Code Here

      if (m_context.isTracked(instance))
      {
         if (m_stateMap == null)
         {
            m_stateMap = new HashTab();
         }

         accumulateChange(m_stateMap, instance, instance.getState());
      }
   }
View Full Code Here

      assert key != null;
      assert cached != null;

      if (m_cacheMap == null)
      {
         m_cacheMap = new HashTab();
      }

      if ((nMode & CACHE_UNPARTITIONED) == 0)
      {
         key = m_context.getPartitionedKey(key);
View Full Code Here

TOP

Related Classes of nexj.core.util.HashTab

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.