Tabnine Logo
TVariable.setElement
Code IndexAdd Tabnine 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)

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

  • Parsing JSON documents to java classes using gson
  • getSupportFragmentManager (FragmentActivity)
  • compareTo (BigDecimal)
  • findViewById (Activity)
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • JButton (javax.swing)
  • Best plugins for Eclipse
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