Codota Logo
MActivity.addOutgoingMessagingEdge
Code IndexAdd Codota to your IDE (free)

How to use
addOutgoingMessagingEdge
method
in
jadex.bpmn.model.MActivity

Best Java code snippets using jadex.bpmn.model.MActivity.addOutgoingMessagingEdge (Showing top 6 results out of 315)

  • Common ways to obtain MActivity
private void myMethod () {
MActivity m =
  • Codota Iconnew MActivity()
  • Codota IconList list;(MActivity) list.get(location)
  • Smart code suggestions by Codota
}
origin: net.sourceforge.jadex/jadex-model-bpmn

/**
 *  Helper method connecting two activities using this edge.
 *  The previous connection is removed.
 * 
 *  @param source New source of the edge.
 *  @param target New target of the edge.
 */
public void connect(MActivity source, MActivity target)
{
  if (this.source != null)
  {
    this.source.removeOutgoingMessagingEdge(this);
  }
  
  if (this.target != null)
  {
    this.target.removeIncomingMessagingEdge(this);
  }
  
  this.source = source;
  this.target = target;
  
  source.addOutgoingMessagingEdge(this);
  target.addIncomingMessagingEdge(this);
}
 
origin: net.sourceforge.jadex/jadex-model-bpmn

edge.setTarget(tgt);
src.addOutgoingMessagingEdge(edge);
tgt.addIncomingMessagingEdge(edge);
origin: org.activecomponents.jadex/jadex-editor-bpmn

  throw new RuntimeException("Could not find message: "+id);
act.addOutgoingMessagingEdge(msg);
msg.setTarget(act);
origin: net.sourceforge.jadex/jadex-kernel-bpmn

  throw new RuntimeException("Could not find message: "+id);
act.addOutgoingMessagingEdge(msg);
msg.setTarget(act);
origin: org.activecomponents.jadex/jadex-editor-bpmn

/**
 *  Sets the source.
 */
public void setSource(mxICell source)
{
  MMessagingEdge medge = (MMessagingEdge) getBpmnElement();
  if (medge != null)
  {
    if (getSource() != null)
    {
      VActivity vsrc = (VActivity) getSource();
      ((MActivity) vsrc.getBpmnElement()).removeOutgoingMessagingEdge(medge);
    }
    this.source = source;
    if (source != null)
    {
      VActivity vsrc = (VActivity) getSource();
      ((MActivity) vsrc.getBpmnElement()).addOutgoingMessagingEdge(medge);
      medge.setSource((MActivity) vsrc.getBpmnElement());
    }
  }
  else
  {
    this.source = source;
  }
  ((BpmnGraph) graph).refreshCellView(this);
}

origin: org.activecomponents.jadex/jadex-editor-bpmn

medge.setSource(sact);
medge.setTarget(tact);
sact.addOutgoingMessagingEdge(medge);
tact.addIncomingMessagingEdge(medge);
jadex.bpmn.modelMActivityaddOutgoingMessagingEdge

Javadoc

Add an outgoing message edge.

Popular methods of MActivity

  • getActivityType
    Get the activity type.
  • getId
  • getName
  • <init>
  • addIncomingMessagingEdge
    Add an incoming message edge.
  • addIncomingSequenceEdge
    Add an incoming edge.
  • addOutgoingSequenceEdge
    Add an outgoing edge.
  • addParameter
    Add a parameter.
  • getClazz
    Get the class.
  • getEventHandlers
    Get the event handlers.
  • getIncomingSequenceEdges
    Get the incoming edges.
  • getLane
    Get the lane of the activity.
  • getIncomingSequenceEdges,
  • getLane,
  • getOutgoingSequenceEdges,
  • getParameters,
  • getProperties,
  • getPropertyValue,
  • isEventHandler,
  • isThrowing,
  • setActivityType

Popular in Java

  • Running tasks concurrently on multiple threads
  • onCreateOptionsMenu (Activity)
  • scheduleAtFixedRate (Timer)
    Schedules the specified task for repeated fixed-rate execution, beginning after the specified delay.
  • findViewById (Activity)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • JFileChooser (javax.swing)
  • JFrame (javax.swing)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now