Codota Logo
TVariable.setElement
Code IndexAdd Codota to your IDE (free)

How to use
setElement
method
in
com.ebmwebsourcing.easybpel.model.bpel.executable.TVariable

Best Java code snippets using com.ebmwebsourcing.easybpel.model.bpel.executable.TVariable.setElement (Showing top 8 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
StringBuilder s =
  • Codota Iconnew StringBuilder()
  • Codota Iconnew StringBuilder(32)
  • Codota IconString str;new StringBuilder(str)
  • Smart code suggestions by Codota
}
origin: com.ebmwebsourcing.easybpel/model-bpel-api

public void setElement(final QName elementName) {
  this.model.setElement(elementName);
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

public void setElement(final QName elementName) {
  this.model.setElement(elementName);
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

public void setElement(final QName elementName) {
  this.model.setElement(elementName);
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

  public BPELElementVariable createBPELElementVariable(String varName, QName e, BPELElementVariable.VariableType varType){
    
    
    TVariable tvar = new TVariable();
    tvar.setName(varName);
    //TODO switch to if
    switch( varType ){
    case MESSAGE:
      tvar.setMessageType(e);
      break;
    case ELEMENT:
      tvar.setElement(e);
      break;
    case TYPE:
      tvar.setType(e);
    }
    
    TVariables tvars = this.model.getVariables();
    if(tvars == null){
      tvars = new TVariables();
      this.model.setVariables(tvars);
    }
    
//        this.model.getVariables().getVariable().add(tvar);
    BPELElementVariable var = new BPELElementVariableImpl(tvar, this.model.getVariables(), this); 
    this.addVariable(var);
    return var;
  }

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

model.setElement(counter.getQName());
model.setType(counter.getType().getQName());
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

fvar.setElement(catch_.getFaultElement());
fvar.setMessageType(catch_.getFaultMessageType());
fvar.setName(catch_.getFaultVariable());
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

sourceElement = this.getElement();
QName copyElement = ((QName) copyBuilder.copy(sourceElement));
copy.setElement(copyElement);
origin: com.ebmwebsourcing.easybpel/model-bpel-api

sourceElement = this.getElement();
QName copyElement = ((QName) copyBuilder.copy(sourceElement));
copy.setElement(copyElement);
com.ebmwebsourcing.easybpel.model.bpel.executableTVariablesetElement

Javadoc

Sets the value of the element property.

Popular methods of TVariable

  • <init>
  • getElement
    Gets the value of the element property.
  • getFrom
    Gets the value of the from property.
  • getMessageType
    Gets the value of the messageType property.
  • getName
    Gets the value of the name property.
  • getType
    Gets the value of the type property.
  • setMessageType
    Sets the value of the messageType property.
  • setName
    Sets the value of the name property.
  • setType
    Sets the value of the type property.
  • copyTo
  • createCopy
  • equals
  • createCopy,
  • equals,
  • hashCode,
  • setFrom,
  • toString

Popular in Java

  • Running tasks concurrently on multiple threads
  • setContentView (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • getResourceAsStream (ClassLoader)
    Returns a stream for the resource with the specified name. See #getResource(String) for a descriptio
  • BufferedReader (java.io)
    Reads text from a character-input stream, buffering characters so as to provide for the efficient re
  • String (java.lang)
  • BigInteger (java.math)
    Immutable arbitrary-precision integers. All operations behave as if BigIntegers were represented in
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
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