congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
TVariables
Code IndexAdd Tabnine to your IDE (free)

How to use
TVariables
in
com.ebmwebsourcing.easybpel.model.bpel.executable

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

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

/**
 * Create an instance of {@link TVariables }
 * 
 */
public TVariables createTVariables() {
  return new TVariables();
}
origin: com.ebmwebsourcing.easybpel/model-bpel-api

public void toString(ToStringBuilder toStringBuilder) {
  super.toString(toStringBuilder);
  {
    List<TVariable> theVariable;
    theVariable = this.getVariable();
    toStringBuilder.append("variable", theVariable);
  }
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

public Object copyTo(Object target, CopyBuilder copyBuilder) {
  final TVariables copy = ((target == null)?((TVariables) createCopy()):((TVariables) target));
  super.copyTo(copy, copyBuilder);
  {
    List<TVariable> sourceVariable;
    sourceVariable = this.getVariable();
    List<TVariable> copyVariable = ((List<TVariable> ) copyBuilder.copy(sourceVariable));
    copy.variable = null;
    List<TVariable> uniqueVariablel = copy.getVariable();
    uniqueVariablel.addAll(copyVariable);
  }
  return copy;
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

public BPELIntVariable createBPELIntVariable(String varName, QName e){
  TVariable tvar = new TVariable();
  tvar.setName(varName);
  tvar.setType(e);
  
  TVariables tvars = this.model.getVariables();
  if(tvars == null){
    tvars = new TVariables();
    this.model.setVariables(tvars);
  }
  
  this.model.getVariables().getVariable().add(tvar);
  BPELIntVariable var = new BPELIntVariableImpl(tvar, this.model.getVariables(), this);
  
  return var;
}

origin: com.ebmwebsourcing.easybpel/model-bpel-api

public boolean equals(Object object) {
  if (!(object instanceof TVariables)) {
    return false;
  }
  if (this == object) {
    return true;
  }
  final EqualsBuilder equalsBuilder = new JAXBEqualsBuilder();
  equals(object, equalsBuilder);
  return equalsBuilder.isEquals();
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

public int hashCode() {
  final HashCodeBuilder hashCodeBuilder = new JAXBHashCodeBuilder();
  hashCode(hashCodeBuilder);
  return hashCodeBuilder.toHashCode();
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

public String toString() {
  final ToStringBuilder toStringBuilder = new JAXBToStringBuilder(this);
  toString(toStringBuilder);
  return toStringBuilder.toString();
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

public Object copyTo(Object target) {
  final CopyBuilder copyBuilder = new JAXBCopyBuilder();
  return copyTo(target, copyBuilder);
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

public static BPELVariable findVariableRecursively(final QName name, final BPELElement parent) {
  BPELVariable res = null;
  if((name != null) && (parent != null)) {
    if(parent instanceof BPELProcess) {
      res = ((BPELProcess)parent).findVariable(name); 
    } else if(parent instanceof Scope) {
      res = ((Scope)parent).findVariable(name); 
    } else if(parent instanceof ForEach) {
      final ForEach forEach = (ForEach)parent;
      if(forEach.getCounterName().equals(name.getLocalPart())) {
        final TVariable tvar = new TVariable();
        tvar.setName(name.getLocalPart());
        tvar.setType(DefaultSchemaImpl.getInstance().getTypeInt().getQName());
        final TVariables tvars = new TVariables();
        tvars.getVariable().add(tvar);
        final BPELVariable<Integer> var = new BPELIntVariableImpl(tvar, tvars, parent);
        res = var;
      }
    }
    if(res == null) {
      res = ScopeImpl.findVariableRecursively(name, (BPELElement) ((AbstractSchemaElementImpl)parent).getParent()); 
    }
  }
  return res;
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

public boolean equals(Object object) {
  if (!(object instanceof TVariables)) {
    return false;
  }
  if (this == object) {
    return true;
  }
  final EqualsBuilder equalsBuilder = new JAXBEqualsBuilder();
  equals(object, equalsBuilder);
  return equalsBuilder.isEquals();
}
origin: com.ebmwebsourcing.easybpel/model-bpel-api

public int hashCode() {
  final HashCodeBuilder hashCodeBuilder = new JAXBHashCodeBuilder();
  hashCode(hashCodeBuilder);
  return hashCodeBuilder.toHashCode();
}
origin: com.ebmwebsourcing.easybpel/model-bpel-api

public String toString() {
  final ToStringBuilder toStringBuilder = new JAXBToStringBuilder(this);
  toString(toStringBuilder);
  return toStringBuilder.toString();
}
origin: com.ebmwebsourcing.easybpel/model-bpel-api

public Object copyTo(Object target) {
  final CopyBuilder copyBuilder = new JAXBCopyBuilder();
  return copyTo(target, copyBuilder);
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

public void toString(ToStringBuilder toStringBuilder) {
  super.toString(toStringBuilder);
  {
    List<TVariable> theVariable;
    theVariable = this.getVariable();
    toStringBuilder.append("variable", theVariable);
  }
}
origin: com.ebmwebsourcing.easybpel/model-bpel-api

public Object copyTo(Object target, CopyBuilder copyBuilder) {
  final TVariables copy = ((target == null)?((TVariables) createCopy()):((TVariables) target));
  super.copyTo(copy, copyBuilder);
  {
    List<TVariable> sourceVariable;
    sourceVariable = this.getVariable();
    List<TVariable> copyVariable = ((List<TVariable> ) copyBuilder.copy(sourceVariable));
    copy.variable = null;
    List<TVariable> uniqueVariablel = copy.getVariable();
    uniqueVariablel.addAll(copyVariable);
  }
  return copy;
}
origin: com.ebmwebsourcing.easybpel/model-bpel-api

/**
 * Create an instance of {@link TVariables }
 * 
 */
public TVariables createTVariables() {
  return new TVariables();
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

public void hashCode(HashCodeBuilder hashCodeBuilder) {
  super.hashCode(hashCodeBuilder);
  hashCodeBuilder.append(this.getVariable());
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

public Object createCopy() {
  return new TVariables();
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

public void equals(Object object, EqualsBuilder equalsBuilder) {
  if (!(object instanceof TVariables)) {
    equalsBuilder.appendSuper(false);
    return ;
  }
  if (this == object) {
    return ;
  }
  super.equals(object, equalsBuilder);
  final TVariables that = ((TVariables) object);
  equalsBuilder.append(this.getVariable(), that.getVariable());
}
origin: com.ebmwebsourcing.easybpel/model-bpel-api

public Object createCopy() {
  return new TVariables();
}
com.ebmwebsourcing.easybpel.model.bpel.executableTVariables

Javadoc

Java class for tVariables complex type.

The following schema fragment specifies the expected content contained within this class.

 
<complexType name="tVariables"> 
<complexContent> 
<extension base="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}tExtensibleElements"> 
<sequence> 
<element ref="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}variable" maxOccurs="unbounded"/> 
</sequence> 
<anyAttribute processContents='lax' namespace='##other'/> 
</extension> 
</complexContent> 
</complexType> 

Most used methods

  • <init>
  • getVariable
    Gets the value of the variable property. This accessor method returns a reference to the live list,
  • copyTo
  • createCopy
  • equals
  • hashCode
  • toString

Popular in Java

  • Making http post requests using okhttp
  • onRequestPermissionsResult (Fragment)
  • requestLocationUpdates (LocationManager)
  • getSupportFragmentManager (FragmentActivity)
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • Reference (javax.naming)
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • Option (scala)
  • Top 17 PhpStorm Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now