Examples of description()


Examples of common.WrappedProcess.description()

  assertTrue(proc3.name().equals("PROCESS_COMPLETE_ATTRIBUTES"));
  assertTrue(!proc2.key().equals(proc3.key()));
  assertTrue(proc1.description() == null);
  assertTrue(proc2.description()
       .equals("Description for test of all accessible attributes"));
  assertTrue(proc3.description()
       .equals("Description for test of all accessible attributes"));
  proc3.setDescription("full");
  assertTrue(proc2.description()
       .equals("Description for test of all accessible attributes"));
  assertTrue(proc3.description().equals("full"));
View Full Code Here

Examples of de.danet.an.workflow.api.Activity.description()

                    Consts.ASAP_PREFIX);
            String val = activity.name();
            maybeAddTextNode(name, val);
            SOAPElement description = activityNode
                .addChildElement("Description", Consts.ASAP_PREFIX);
            val = activity.description();
            maybeAddTextNode(description, val);
            Collection assignments = activity.assignments();
            Iterator assignmentIterator = assignments.iterator();
            while (assignmentIterator.hasNext()) {
                Assignment assignment = (Assignment) iterator.next();
View Full Code Here

Examples of de.danet.an.workflow.api.Application.description()

  } catch (InvalidIdException exc) {
      gotException = true;
  }
  assertTrue(gotException);
  Application appl = procdef.applicationById("dummy");
  assertTrue(appl.description().equals("Dummy application for testing"
               + " purposes only."));
  assertTrue(appl.id().equals("dummy"));
  assertTrue(procdef.applications().size() == 1);
  assertTrue(((Application)procdef.applications().iterator().next())
       .id().equals("dummy"));
View Full Code Here

Examples of de.danet.an.workflow.api.Process.description()

                    Consts.ASAP_PREFIX);
            String val = proc.name();
            maybeAddTextNode(name, val);
            SOAPElement subject = instance.addChildElement("Subject",
                    Consts.ASAP_PREFIX);
            val = proc.description();
            maybeAddTextNode(subject, val);
            SOAPElement priority = instance.addChildElement("Priority",
                    Consts.ASAP_PREFIX);
            val = Integer.toString(proc.priority());
            priority.addTextNode(val);
View Full Code Here

Examples of de.danet.an.workflow.api.ProcessMgr.description()

  assertTrue(mgrMin.category() == null);
  assertTrue(mgrMin.description() == null);
  assertTrue(mgrMin.version() == null);
  assertTrue(mgrMin.name().equals("SystemTest_minimal/minimal"));
  assertTrue(mgrFull.category().equals("System Test (procdef)"));
  assertTrue(mgrFull.description()
       .equals("Description for test of all accessible attributes"));
 
  assertTrue(mgrFull.version().equals("beta 1"));
  assertTrue(mgrFull.name().equals("SystemTest_full/full"));
View Full Code Here

Examples of de.danet.an.workflow.domain.ApplicationDefinition.description()

        .get ("formalParam3") == String.class);

  ApplicationDefinition appl
      = (ApplicationDefinition)pd.applicationById("WebForm");
  assertTrue (appl != null);
  assertTrue (appl.description(), appl.description().equals
        ("Bearbeitung einer Aktivit�t �ber ein Web-Formular      "));
  appl = (ApplicationDefinition)pd.applicationById("WebFormPlus");
  assertTrue (appl != null);
  FormalParameter[] fps = appl.formalParameters();
  assertTrue (fps.length == 2);
View Full Code Here

Examples of de.danet.an.workflow.localcoreapi.WfProcessLocal.description()

    public Info activityInfo () {
  WfProcessLocal proc = containerLocal();
  return new Info
      (uniqueKey(),
       name(), description (), priority(), lastStateTime(),
       getPaProcessName(), proc.description());
    }

    /**
     * Returns the key of the "parent" block activity. All activities
     * implicitly created by a block activity share the same block
View Full Code Here

Examples of de.fuberlin.wiwiss.d2rq.ResourceDescriber.description()

    Model description = null;
    try {
      ResourceDescriber describer = new ResourceDescriber(
          server.getMapping(), resource.asNode(), outgoingTriplesOnly,
          limit, Math.round(server.getConfig().getPageTimeout() * 1000));
      description = ModelFactory.createModelForGraph(describer.description());
    } catch (QueryCancelledException ex) {
      velocity.reportError(
          504, "504 Gateway Timeout", "The operation timed out.");
      return;
    }
View Full Code Here

Examples of edsdk.utils.CanonConstants.EdsCompressQuality.description()

        System.out.println( "                type: " +
                            secondaryImageType.description() );
        System.out.println( "                size: " +
                            secondaryImageSize.description() );
        System.out.println( " compression quality: " +
                            secondaryImageCompressQuality.description() );
    }

}
View Full Code Here

Examples of edsdk.utils.CanonConstants.EdsCustomFunction.description()

                        final Long value = CanonUtils.getPropertyData( camera.getEdsCamera(), EdsPropertyID.kEdsPropID_CFn, i );
                        System.out.println( " Value: " + value );
                        final EdsCustomFunction e = EdsCustomFunction.enumOfValue( i );
                        if ( e != null ) {
                            System.out.println( " Known: Yes, " + e.name() +
                                                " (" + e.description() + ")" );
                        } else {
                            System.out.println( " Known: NO" );
                        }
                    }
                }
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.