Tabnine Logo
Node.setName
Code IndexAdd Tabnine to your IDE (free)

How to use
setName
method
in
org.jbpm.workflow.core.Node

Best Java code snippets using org.jbpm.workflow.core.Node.setName (Showing top 20 results out of 315)

origin: kiegroup/jbpm

public RuleSetNodeFactory name(String name) {
  getNode().setName(name);
  return this;
}
origin: kiegroup/jbpm

public SubProcessNodeFactory name(String name) {
  getNode().setName(name);
  return this;
}
origin: kiegroup/jbpm

public MilestoneNodeFactory name(String name) {
  getNode().setName(name);
  return this;
}
origin: kiegroup/jbpm

public EndNodeFactory name(String name) {
  getNode().setName(name);
  return this;
}
origin: kiegroup/jbpm

public JoinFactory name(String name) {
  getNode().setName(name);
  return this;
}
origin: kiegroup/jbpm

public EventNodeFactory name(String name) {
  getNode().setName(name);
  return this;
}
origin: kiegroup/jbpm

public ActionNodeFactory name(String name) {
  getNode().setName(name);
  return this;
}
origin: kiegroup/jbpm

public WorkItemNodeFactory name(String name) {
  getNode().setName(name);
  return this;
}

origin: kiegroup/jbpm

public HumanTaskNodeFactory name(String name) {
  getNode().setName(name);
  return this;
}

origin: kiegroup/jbpm

public FaultNodeFactory name(String name) {
  getNode().setName(name);
  return this;
}
origin: kiegroup/jbpm

public BoundaryEventNodeFactory name(String name) {
  getNode().setName(name);
  return this;
}
origin: kiegroup/jbpm

public StartNodeFactory name(String name) {
  getNode().setName(name);
  return this;
}

origin: kiegroup/jbpm

public SplitFactory name(String name) {
  getNode().setName(name);
  return this;
}
origin: kiegroup/jbpm

public TimerNodeFactory name(String name) {
  getNode().setName(name);
  return this;
}

origin: kiegroup/jbpm

public Object start(final String uri,
          final String localName,
          final Attributes attrs,
          final ExtensibleXmlParser parser) throws SAXException {
  parser.startElementBuilder(localName, attrs);
  final Node node = createNode(attrs);
  String id = attrs.getValue("id");
  node.setMetaData("UniqueId", id);
  final String name = attrs.getValue("name");
  node.setName(name);
  AtomicInteger idGen = (AtomicInteger) parser.getMetaData().get("idGen");
  node.setId(idGen.getAndIncrement());
  return node;
}
origin: kiegroup/jbpm

public Object start(final String uri, final String localName, final Attributes attrs,
          final ExtensibleXmlParser parser) throws SAXException {
  parser.startElementBuilder( localName,
                attrs );
  NodeContainer nodeContainer = (NodeContainer) parser.getParent();
  final Node node = createNode();
  final String id = attrs.getValue("id");
  node.setId(new Long(id));
  final String name = attrs.getValue("name");
  node.setName(name);
  nodeContainer.addNode(node);
  return node;
}
origin: kiegroup/jbpm

node.setMetaData("UniqueId", id);
final String name = attrs.getValue("name");
node.setName(name);
if ("true".equalsIgnoreCase(System.getProperty("jbpm.v5.id.strategy"))) {
  try {
origin: kiegroup/jbpm

NodeContainer nodeContainer = (NodeContainer) parser.getParent();
node.setName(element.getAttribute("name"));
origin: kiegroup/jbpm

protected void handleLinkNode(Element element, Node node,
    org.w3c.dom.Node xmlLinkNode, ExtensibleXmlParser parser) {
  node.setName(element.getAttribute("name"));
origin: kiegroup/jbpm

endNode.setName( "end node" );        
org.jbpm.workflow.coreNodesetName

Javadoc

Method for setting the name of the node

Popular methods of Node

  • setId
    Method for setting the id of the node
  • getMetaData
  • getName
  • setMetaData
  • getId
  • getUniqueId
  • addIncomingConnection
  • addOutgoingConnection
  • getNodeContainer
  • removeIncomingConnection
  • removeOutgoingConnection
  • setNodeContainer
  • removeOutgoingConnection,
  • setNodeContainer

Popular in Java

  • Making http post requests using okhttp
  • requestLocationUpdates (LocationManager)
  • startActivity (Activity)
  • runOnUiThread (Activity)
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • LinkedHashMap (java.util)
    LinkedHashMap is an implementation of Map that guarantees iteration order. All optional operations a
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now