Codota Logo
MActivity.removeOutgoingMessagingEdge
Code IndexAdd Codota 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)

  • 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: 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
  • onRequestPermissionsResult (Fragment)
  • notifyDataSetChanged (ArrayAdapter)
  • getExternalFilesDir (Context)
  • URLConnection (java.net)
    The abstract class URLConnection is the superclass of all classes that represent a communications li
  • MessageFormat (java.text)
    MessageFormat provides a means to produce concatenated messages in language-neutral way. Use this to
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • TreeMap (java.util)
    A Red-Black tree based NavigableMap implementation. The map is sorted according to the Comparable of
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
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