Package com.arjuna.ats.internal.jts.orbspecific

Examples of com.arjuna.ats.internal.jts.orbspecific.ControlImple


    public static void destroyControl (Control control) throws ActiveTransaction, ActiveThreads, BadControl, Destroyed, SystemException
    {
  if (control == null)
      throw new BadControl();
 
  ControlImple lCont = Helper.localControl(control);

  if (lCont != null)
  {
      destroyControl(lCont);
  }
View Full Code Here


   * Map otid to a Uid.
   */
   
  Uid theUid = OTIDMap.find(context.current.otid);
  InterposedHierarchy proxyAction = present(theUid);
  ControlImple controlPtr = null;
 
  if (proxyAction == null)
  {
      /*
       * Create a new proxyAction element and return the "current" transaction.
View Full Code Here

     * run an explicit garbage collection phase for finished hierarchies.
     */

public synchronized ControlImple setupHierarchy (PropagationContext context) throws SystemException
    {
  ControlImple controlPtr = null;
  Uid theUid = null;
  InterposedHierarchy proxyAction = null;

  if (context.parents.length == 0)
      theUid = Utility.otidToUid(context.current.otid);
View Full Code Here

     * run an explicit garbage collection phase for finished hierarchies.
     */

public synchronized ControlImple setupHierarchy (PropagationContext context) throws SystemException
    {
  ControlImple controlPtr = null;
  Uid theUid = null;
  InterposedHierarchy proxyAction = null;

  if (context.parents.length == 0)
      theUid = Utility.otidToUid(context.current.otid);
View Full Code Here

  boolean isError = false;
   
  try
  {
      ControlImple curr = which.getParentImple();
      Stack hier = new Stack();

      while (curr != null)
      {
    hier.push(new ControlWrapper(curr));

    curr = curr.getParentImple();
      }

      try
      {
    ControlWrapper wrapper = (ControlWrapper) hier.pop();
View Full Code Here

TOP

Related Classes of com.arjuna.ats.internal.jts.orbspecific.ControlImple

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.