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

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

Best Java code snippets using jadex.bpmn.model.MActivity.removeIncomingMessagingEdge (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().getTarget().removeIncomingMessagingEdge((MMessagingEdge) entry.getValue());
  aentry.getValue().removeIncomingMessagingEdge((MMessagingEdge) entry.getValue());
  aentry.getValue().removeOutgoingMessagingEdge((MMessagingEdge) entry.getValue());;
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.getTarget().removeIncomingMessagingEdge(medge);
modelcontainer.setDirty(true);
jadex.bpmn.modelMActivityremoveIncomingMessagingEdge

Javadoc

Remove an incoming 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

  • Finding current android device location
  • scheduleAtFixedRate (ScheduledExecutorService)
  • requestLocationUpdates (LocationManager)
  • getSharedPreferences (Context)
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement. A servlet is a small Java program that runs within
  • Scheduler (org.quartz)
    This is the main interface of a Quartz Scheduler. A Scheduler maintains a registry of org.quartz.Job
  • Top plugins for Android Studio
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