Examples of type()


Examples of com.arjuna.ats.arjuna.StateManager.type()

         * where crash recovery hasn't run yet.
         */
       
        try
        {
      store.write_uncommitted(sm.get_uid(), sm.type(), dummy);
      result = TwoPhaseOutcome.PREPARE_OK;
        }
        catch (ObjectStoreException e)
        {
      tsLogger.arjLoggerI18N.warn("com.arjuna.ats.arjuna.PersistenceRecord_21",e);
View Full Code Here

Examples of com.arjuna.ats.arjuna.coordinator.AbstractRecord.type()

        int count = 1;
        while ( current != null )
        {
            ListEntryNode entryNode;
            ObjectStoreViewEntry icon;
            node.createEntry(entryNode = new ListEntryNode("["+count+"] "+current.type(), current, current.type()));
            entryNode.setIconPanelEntry(icon = new ObjectStoreViewEntry(wrapper.type(), (String)entryNode.getUserObject(), entryNode));
            icon.addSelectionListener(this);
            current = getList().peekNext(current);
            count++;
        }
View Full Code Here

Examples of com.arjuna.ats.arjuna.coordinator.BasicAction.type()

/*     */       }
/*     */
/*     */     }
/*     */
/*  75 */     BasicAction ba = new BasicAction();
/*  76 */     String baType = ba.type();
/*  77 */     if (baType.charAt(0) == '/')
/*  78 */       baType = baType.substring(1);
/*     */     try
/*     */     {
/*  81 */       TxControl txc = new TxControl();
View Full Code Here

Examples of com.arjuna.ats.arjuna.state.OutputObjectState.type()

/* 267 */       if (this.store == null) {
/* 268 */         return 8;
/*     */       }
/*     */       try
/*     */       {
/* 272 */         res = this.store.commit_state(oState.stateUid(), oState.type());
/*     */       }
/*     */       catch (ObjectStoreException e)
/*     */       {
/* 276 */         res = false;
/*     */       }
View Full Code Here

Examples of com.arjuna.ats.tools.objectstorebrowser.stateviewers.viewers.arjunatransaction.ArjunaTransactionWrapper.type()

        while ( current != null )
        {
            ListEntryNode entryNode;
            ObjectStoreViewEntry icon;
            node.createEntry(entryNode = new ListEntryNode("["+count+"] "+current.type(), current, current.type()));
            entryNode.setIconPanelEntry(icon = new ObjectStoreViewEntry(aaw.type(), (String)entryNode.getUserObject(), entryNode));
            icon.addSelectionListener(this);
            current = aaw.getPreparedList().peekNext(current);
            count++;
        }
    }
View Full Code Here

Examples of com.arjuna.ats.tools.objectstorebrowser.stateviewers.viewers.atomicaction.AtomicActionWrapper.type()

        while ( current != null )
        {
            ListEntryNode entryNode;
            ObjectStoreViewEntry icon;
            node.createEntry(entryNode = new ListEntryNode("["+count+"] "+current.type(), current, current.type()));
            entryNode.setIconPanelEntry(icon = new ObjectStoreViewEntry(aaw.type(), (String)entryNode.getUserObject(), entryNode));
            icon.addSelectionListener(this);
            current = aaw.getPreparedList().peekNext(current);
            count++;
        }
    }
View Full Code Here

Examples of com.asakusafw.directio.hive.annotation.HiveField.type()

        Method simple = descriptor.getDataModelClass().getMethod("getSimpleOption");
        HiveField field = simple.getAnnotation(HiveField.class);
        assertThat(field, is(notNullValue()));
        assertThat(field.name(), is("simple"));
        assertThat(field.type(), is("int"));
        assertThat(field.ignore(), is(false));
    }

    /**
     * w/o attribute.
View Full Code Here

Examples of com.caucho.config.inject.BeanFactory.type()

  protected void configureInstanceVariables(WebApp webApp)
    throws Throwable
  {
    InjectManager beanManager = InjectManager.create();
    BeanFactory factory = beanManager.createBeanFactory(WebApp.class);
    factory.type(WebApp.class);
    factory.type(ServletContext.class);
    // factory.stereotype(CauchoDeploymentLiteral.create());

    beanManager.addBean(factory.singleton(webApp));
View Full Code Here

Examples of com.caucho.env.repository.CommitBuilder.type()

   
    if (sourceHost == null)
      sourceHost = "default";

    CommitBuilder source = new CommitBuilder();
    source.type("webapp");

    String sourceStage = args.getArg("-source-stage");

    if (sourceStage != null)
      source.stage(sourceStage);
View Full Code Here

Examples of com.clarkparsia.empire.annotation.NamedGraph.type()

   */
  public static boolean hasNamedGraphSpecified(Object theObj) {
    NamedGraph aAnnotation = theObj.getClass().getAnnotation(NamedGraph.class);

    return aAnnotation != null &&
         (aAnnotation.type() == NamedGraph.NamedGraphType.Instance || (aAnnotation.type() == NamedGraph.NamedGraphType.Static
                                       && !aAnnotation.value().equals("")));
  }

  /**
   * Returns the URI of the named graph that operations involving instances should be performed.  If null is returned
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.