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

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

Best Java code snippets using jadex.bpmn.model.MActivity.addIncomingMessagingEdge (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

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

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

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

/**
 *  Sets the target.
 */
public void setTarget(mxICell target)
{
  MMessagingEdge medge = (MMessagingEdge) getBpmnElement();
  if (medge != null)
  {
    if (getTarget() != null)
    {
      VActivity vtgt = (VActivity) getTarget();
      ((MActivity) vtgt.getBpmnElement()).removeIncomingMessagingEdge(medge);
    }
    super.setTarget(target);
    if (target != null)
    {
      VActivity vtgt = (VActivity) getTarget();
      ((MActivity) vtgt.getBpmnElement()).addIncomingMessagingEdge(medge);
      medge.setTarget((MActivity) vtgt.getBpmnElement());
    }
  }
  else
  {
    super.setTarget(target);
  }
}

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

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

Javadoc

Add an incoming message edge.

Popular methods of MActivity

  • getActivityType
    Get the activity type.
  • getId
  • getName
  • <init>
  • addIncomingSequenceEdge
    Add an incoming edge.
  • addOutgoingMessagingEdge
    Add an outgoing message 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

  • Finding current android device location
  • scheduleAtFixedRate (Timer)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • putExtra (Intent)
  • FileWriter (java.io)
    Convenience class for writing character files. The constructors of this class assume that the defaul
  • String (java.lang)
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • List (java.util)
    A List is a collection which maintains an ordering for its elements. Every element in the List has a
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
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