Tabnine Logo
TElseif.setForEach
Code IndexAdd Tabnine to your IDE (free)

How to use
setForEach
method
in
com.ebmwebsourcing.easybpel.model.bpel.executable.TElseif

Best Java code snippets using com.ebmwebsourcing.easybpel.model.bpel.executable.TElseif.setForEach (Showing top 3 results out of 315)

origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

public static void setActivityToElseIf(Activity activity, TElseif parent) throws BPELException{
  if(activity instanceof Sequence){
    parent.setSequence((TSequence) ((AbstractSchemaElementImpl)activity).getModel());
  } else if ( activity instanceof Flow ){
    parent.setFlow((TFlow) ((AbstractSchemaElementImpl)activity).getModel());
  } else if( activity instanceof Invoke ){
    parent.setInvoke((TInvoke) ((AbstractSchemaElementImpl)activity).getModel());
  } else if ( activity instanceof Receive ){
    parent.setReceive((TReceive) ((AbstractSchemaElementImpl)activity).getModel());
  } else if ( activity instanceof Reply ){
    parent.setReply((TReply) ((AbstractSchemaElementImpl)activity).getModel());
  } else if( activity instanceof Assign ){
    parent.setAssign((TAssign) ((AbstractSchemaElementImpl)activity).getModel());
  } else if( activity instanceof If ){
    parent.setIf((TIf) ((AbstractSchemaElementImpl)activity).getModel());
  } else if ( activity instanceof Pick ){
    parent.setPick((TPick) ((AbstractSchemaElementImpl)activity).getModel());
  } else if ( activity instanceof Exit ){
    parent.setExit((TExit) ((AbstractSchemaElementImpl)activity).getModel());
  } else if ( activity instanceof Empty ){
    parent.setEmpty((TEmpty) ((AbstractSchemaElementImpl)activity).getModel());
  } else if (activity instanceof ForEach){
    parent.setForEach((TForEach) ((AbstractSchemaElementImpl)activity).getModel());
  } else if ( activity instanceof While ){
    parent.setWhile((TWhile) ((AbstractSchemaElementImpl)activity).getModel());
  } else {
    //TODO : complete activities
    throw new BPELException("setActivity() not yet implemented for "+activity.getClass().getName());
  }
}
origin: com.ebmwebsourcing.easybpel/model-bpel-api

sourceForEach = this.getForEach();
TForEach copyForEach = ((TForEach) copyBuilder.copy(sourceForEach));
copy.setForEach(copyForEach);
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

sourceForEach = this.getForEach();
TForEach copyForEach = ((TForEach) copyBuilder.copy(sourceForEach));
copy.setForEach(copyForEach);
com.ebmwebsourcing.easybpel.model.bpel.executableTElseifsetForEach

Javadoc

Sets the value of the forEach property.

Popular methods of TElseif

  • <init>
  • getAssign
    Gets the value of the assign property.
  • getCondition
    Gets the value of the condition property.
  • getEmpty
    Gets the value of the empty property.
  • getExit
    Gets the value of the exit property.
  • getFlow
    Gets the value of the flow property.
  • getForEach
    Gets the value of the forEach property.
  • getIf
    Gets the value of the if property.
  • getInvoke
    Gets the value of the invoke property.
  • getPick
    Gets the value of the pick property.
  • getReceive
    Gets the value of the receive property.
  • getRepeatUntil
    Gets the value of the repeatUntil property.
  • getReceive,
  • getRepeatUntil,
  • getReply,
  • getRethrow,
  • getScope,
  • getSequence,
  • getThrow,
  • getWait,
  • getWhile,
  • setAssign

Popular in Java

  • Running tasks concurrently on multiple threads
  • getResourceAsStream (ClassLoader)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getSystemService (Context)
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • Top 12 Jupyter Notebook extensions
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