Tabnine Logo
MActivity.removeOutgoingMessagingEdge
Code IndexAdd Tabnine to your IDE (free)

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

Best Java code snippets using jadex.bpmn.model.MActivity.removeOutgoingMessagingEdge (Showing top 4 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: org.activecomponents.jadex/jadex-editor-bpmn

entry.getValue().getSource().removeOutgoingMessagingEdge((MMessagingEdge) entry.getValue());
  aentry.getValue().removeOutgoingMessagingEdge((MMessagingEdge) entry.getValue());;
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

MMessagingEdge medge = (MMessagingEdge) vedge.getBpmnElement();
medge.getSource().removeOutgoingMessagingEdge(medge);
medge.getTarget().removeIncomingMessagingEdge(medge);
modelcontainer.setDirty(true);
jadex.bpmn.modelMActivityremoveOutgoingMessagingEdge

Javadoc

Remove 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.
  • 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.
  • getEventHandlers,
  • getIncomingSequenceEdges,
  • getLane,
  • getOutgoingSequenceEdges,
  • getParameters,
  • getProperties,
  • getPropertyValue,
  • isEventHandler,
  • isThrowing,
  • setActivityType

Popular in Java

  • Start an intent from android
  • getResourceAsStream (ClassLoader)
  • getSharedPreferences (Context)
  • startActivity (Activity)
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • Permission (java.security)
    Legacy security code; do not use.
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • Reference (javax.naming)
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • Option (scala)
  • 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