congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
MActivity.addIncomingMessagingEdge
Code IndexAdd Tabnine 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)

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

  • Updating database using SQL prepared statement
  • runOnUiThread (Activity)
  • getExternalFilesDir (Context)
  • scheduleAtFixedRate (Timer)
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Table (org.hibernate.mapping)
    A relational table
  • From CI to AI: The AI layer in your organization
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