Package com.arjuna.ats.arjuna.gandiva

Examples of com.arjuna.ats.arjuna.gandiva.ClassName


     * representation of the object store value.
     */

public final static void print (PrintWriter strm, int rt)
    {
  ClassName c = typeToClassName(rt);
 
  strm.print(c);

  c = null;
    }
View Full Code Here


      DefaultMutableTreeNode top = (DefaultMutableTreeNode) topTran.getFirstChild();
      DefaultTreeModel model = (DefaultTreeModel) transactions.getModel();

      try
      {
    ClassName actionStoreType = new ClassName(arjPropertyManager.propertyManager.getProperty(Environment.ACTION_STORE,
                       ArjunaNames.Implementation_ObjectStore_defaultActionStore().stringForm()));
   
    ObjectStore imple = new ObjectStore(actionStoreType, root);
    InputObjectState types = new InputObjectState();
View Full Code Here

  String storeImple = null;
  DefaultMutableTreeNode top = new DefaultMutableTreeNode(scanningNode);

  try
  {
      ClassName actionStoreType = new ClassName(arjPropertyManager.propertyManager.getProperty(Environment.ACTION_STORE,
                      ArjunaNames.Implementation_ObjectStore_defaultActionStore().stringForm()));

      ObjectStore imple = new ObjectStore(actionStoreType, root);
      InputObjectState types = new InputObjectState();
View Full Code Here

            {
                    String useLog = arjPropertyManager.propertyManager.getProperty(
                                    Environment.TRANSACTION_LOG, "OFF");

                    if (useLog.equals("ON"))
                            TxControl.actionStoreType = new ClassName(ArjunaNames
                                            .Implementation_ObjectStore_ActionLogStore());
                    else
                            TxControl.actionStoreType = new ClassName(
                                            arjPropertyManager.propertyManager
                                                            .getProperty(
                                                                            Environment.ACTION_STORE,
                                                                            ArjunaNames
                                                                                            .Implementation_ObjectStore_defaultActionStore()
                                                                                            .stringForm()));

                    String sharedLog = arjPropertyManager.propertyManager.getProperty(
                                    Environment.SHARED_TRANSACTION_LOG, "NO");

                    if (sharedLog.equals("YES"))
                            sharedTransactionLog = true;
            }

            ClassName recoveryType = TxControl.actionStoreType;
           
            if (TxControl.actionStoreType.equals(ArjunaNames.Implementation_ObjectStore_ActionLogStore()))
                recoveryType = ArjunaNames.Implementation_ObjectStore_defaultActionStore();
           
            /*
 
View Full Code Here

    {
      String useLog = arjPropertyManager.propertyManager.getProperty(
          Environment.TRANSACTION_LOG, "OFF");

      if (useLog.equals("ON"))
        TxControl.actionStoreType = new ClassName(ArjunaNames
            .Implementation_ObjectStore_ActionLogStore());
      else
        TxControl.actionStoreType = new ClassName(
            arjPropertyManager.propertyManager
                .getProperty(
                    Environment.ACTION_STORE,
                    ArjunaNames
                        .Implementation_ObjectStore_defaultActionStore()
View Full Code Here

  return "DROP_TABLE";
    }

    public static ClassName Implementation_AbstractRecord_PersistenceRecord ()
    {
  return new ClassName("RecordType.Persistence");
    }
View Full Code Here

  return new ClassName("RecordType.Persistence");
    }

    public static ClassName Implementation_AbstractRecord_TxLogPersistenceRecord ()
    {
  return new ClassName("RecordType.TxLogPersistence");
    }
View Full Code Here

  return new ClassName("RecordType.TxLogPersistence");
    }

    public static ClassName Implementation_AbstractRecord_LastResourceRecord ()
    {
  return new ClassName("RecordType.LastResource");
    }
View Full Code Here

  return new ClassName("RecordType.LastResource");
    }

    public static ClassName Implementation_AbstractRecord_CadaverRecord ()
    {
  return new ClassName("RecordType.Cadaver");
    }
View Full Code Here

  return new ClassName("RecordType.Cadaver");
    }

    public static ClassName Implementation_AbstractRecord_CadaverRecord_DisposeRecord ()
    {
  return new ClassName("RecordType.Dispose");
    }   
View Full Code Here

TOP

Related Classes of com.arjuna.ats.arjuna.gandiva.ClassName

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.