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

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

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

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

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

equalsBuilder.append(this.getCondition(), that.getCondition());
equalsBuilder.append(this.getAssign(), that.getAssign());
equalsBuilder.append(this.getCompensate(), that.getCompensate());
equalsBuilder.append(this.getCompensateScope(), that.getCompensateScope());
equalsBuilder.append(this.getEmpty(), that.getEmpty());
equalsBuilder.append(this.getExit(), that.getExit());
equalsBuilder.append(this.getExtensionActivity(), that.getExtensionActivity());
equalsBuilder.append(this.getFlow(), that.getFlow());
equalsBuilder.append(this.getForEach(), that.getForEach());
equalsBuilder.append(this.getIf(), that.getIf());
equalsBuilder.append(this.getInvoke(), that.getInvoke());
equalsBuilder.append(this.getPick(), that.getPick());
equalsBuilder.append(this.getReceive(), that.getReceive());
equalsBuilder.append(this.getRepeatUntil(), that.getRepeatUntil());
equalsBuilder.append(this.getReply(), that.getReply());
equalsBuilder.append(this.getRethrow(), that.getRethrow());
equalsBuilder.append(this.getScope(), that.getScope());
equalsBuilder.append(this.getSequence(), that.getSequence());
equalsBuilder.append(this.getThrow(), that.getThrow());
equalsBuilder.append(this.getValidate(), that.getValidate());
equalsBuilder.append(this.getWait(), that.getWait());
equalsBuilder.append(this.getWhile(), that.getWhile());
origin: com.ebmwebsourcing.easybpel/model-bpel-api

public Object copyTo(Object target, CopyBuilder copyBuilder) {
  final TElseif copy = ((target == null)?((TElseif) createCopy()):((TElseif) target));
  super.copyTo(copy, copyBuilder);
    sourceCondition = this.getCondition();
    TBooleanExpr copyCondition = ((TBooleanExpr) copyBuilder.copy(sourceCondition));
    copy.setCondition(copyCondition);
    sourceAssign = this.getAssign();
    TAssign copyAssign = ((TAssign) copyBuilder.copy(sourceAssign));
    copy.setAssign(copyAssign);
    sourceCompensate = this.getCompensate();
    TCompensate copyCompensate = ((TCompensate) copyBuilder.copy(sourceCompensate));
    copy.setCompensate(copyCompensate);
    sourceCompensateScope = this.getCompensateScope();
    TCompensateScope copyCompensateScope = ((TCompensateScope) copyBuilder.copy(sourceCompensateScope));
    copy.setCompensateScope(copyCompensateScope);
    sourceEmpty = this.getEmpty();
    TEmpty copyEmpty = ((TEmpty) copyBuilder.copy(sourceEmpty));
    copy.setEmpty(copyEmpty);
    sourceExit = this.getExit();
    TExit copyExit = ((TExit) copyBuilder.copy(sourceExit));
    copy.setExit(copyExit);
    sourceExtensionActivity = this.getExtensionActivity();
    TExtensionActivity copyExtensionActivity = ((TExtensionActivity) copyBuilder.copy(sourceExtensionActivity));
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

public static Activity analyzeElseIfActivity(final TElseif internalActivity, final BPELElementImpl parent) throws BPELException {
  Activity res = null;
  final TElseif temp = internalActivity;
  if(temp.getEmpty() != null) {
    res = new EmptyImpl(temp.getEmpty(), parent);
  } else if(temp.getWait() != null) {
    res = new WaitImpl(temp.getWait(), parent);
  } else if(temp.getSequence() != null) {
    res = new SequenceImpl(temp.getSequence(), parent);
  } else if(temp.getFlow() != null) {
    res = new FlowImpl(temp.getFlow(), parent);
  } else if(temp.getIf() != null) {
    res = new IfImpl(temp.getIf(), parent);
  } else if(temp.getWhile() != null) {
    res = new WhileImpl(temp.getWhile(), parent);
  } else if(temp.getForEach() != null) {
    res = new ForEachImpl(temp.getForEach(), parent);
  } else if(temp.getRepeatUntil() != null) {
    res = new RepeatUntilImpl(temp.getRepeatUntil(), parent);
  } else if(temp.getAssign() != null) {
    res = new AssignImpl(temp.getAssign(), parent);
  } else if(temp.getPick() != null) {
    res = new PickImpl(temp.getPick(), parent);
  } else if(temp.getScope() != null) {
    res = new ScopeImpl(temp.getScope(), parent);
  } else if(temp.getInvoke() != null) {
    res = new InvokeImpl(temp.getInvoke(), parent);
  } else if(temp.getReceive() != null) {
    res = new ReceiveImpl(temp.getReceive(), parent);
  } else if(temp.getReply() != null) {
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

public void addElseIfActivity(BPELBooleanExpression exp, Activity a) throws BPELException {
  TElseif elseif = new TElseif();
  if(exp != null) {
    elseif.setCondition((TBooleanExpr) ((BPELExpressionImpl)exp).getModel());
    this.conditions.add(exp);
  }
  if(a != null) {
    ActivityImpl.setActivityToElseIf(a, elseif);
    this.model.getElseif().add(elseif);
    this.activities.add(a);
  }
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

if(elseIf.getCondition() != null)  {
  BPELBooleanExpression expElse = null;
  try {
    expElse = new BPELBooleanExpressionImpl(elseIf.getCondition(), parent);
  } catch (XPathExpressionException e) {
    BPELStaticAnalysisImpl.getInstance().addError(new BPELErrorImpl(this, new BPELException(e)));
  if((elseIf.getCondition().getContent() != null)&&
      (elseIf.getCondition().getContent().size() > 0)) {
    expElse.setContent((String)elseIf.getCondition().getContent().get(0));
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

public Object copyTo(Object target, CopyBuilder copyBuilder) {
  final TElseif copy = ((target == null)?((TElseif) createCopy()):((TElseif) target));
  super.copyTo(copy, copyBuilder);
    sourceCondition = this.getCondition();
    TBooleanExpr copyCondition = ((TBooleanExpr) copyBuilder.copy(sourceCondition));
    copy.setCondition(copyCondition);
    sourceAssign = this.getAssign();
    TAssign copyAssign = ((TAssign) copyBuilder.copy(sourceAssign));
    copy.setAssign(copyAssign);
    sourceCompensate = this.getCompensate();
    TCompensate copyCompensate = ((TCompensate) copyBuilder.copy(sourceCompensate));
    copy.setCompensate(copyCompensate);
    sourceCompensateScope = this.getCompensateScope();
    TCompensateScope copyCompensateScope = ((TCompensateScope) copyBuilder.copy(sourceCompensateScope));
    copy.setCompensateScope(copyCompensateScope);
    sourceEmpty = this.getEmpty();
    TEmpty copyEmpty = ((TEmpty) copyBuilder.copy(sourceEmpty));
    copy.setEmpty(copyEmpty);
    sourceExit = this.getExit();
    TExit copyExit = ((TExit) copyBuilder.copy(sourceExit));
    copy.setExit(copyExit);
    sourceExtensionActivity = this.getExtensionActivity();
    TExtensionActivity copyExtensionActivity = ((TExtensionActivity) copyBuilder.copy(sourceExtensionActivity));
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

@Override
public void validate() {
  // validation
  if(((TIf)((BPELElementImpl)this.getActivity()).getModel()).getCondition() == null) {
    BPELStaticAnalysisImpl.getInstance().addError(new BPELErrorImpl(this.getActivity(), new BPELException("In if => conditon of if cannot be null")));
  }
  
  
  for(final TElseif elseIf: ((TIf)((BPELElementImpl)this.getActivity()).getModel()).getElseif()) {
    if(elseIf.getCondition() == null) {
      BPELStaticAnalysisImpl.getInstance().addError(new BPELErrorImpl(this.getActivity(), new BPELException("In if => conditon of elseif cannot be null")));
    } 
  }
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

equalsBuilder.append(this.getCondition(), that.getCondition());
equalsBuilder.append(this.getAssign(), that.getAssign());
equalsBuilder.append(this.getCompensate(), that.getCompensate());
equalsBuilder.append(this.getCompensateScope(), that.getCompensateScope());
equalsBuilder.append(this.getEmpty(), that.getEmpty());
equalsBuilder.append(this.getExit(), that.getExit());
equalsBuilder.append(this.getExtensionActivity(), that.getExtensionActivity());
equalsBuilder.append(this.getFlow(), that.getFlow());
equalsBuilder.append(this.getForEach(), that.getForEach());
equalsBuilder.append(this.getIf(), that.getIf());
equalsBuilder.append(this.getInvoke(), that.getInvoke());
equalsBuilder.append(this.getPick(), that.getPick());
equalsBuilder.append(this.getReceive(), that.getReceive());
equalsBuilder.append(this.getRepeatUntil(), that.getRepeatUntil());
equalsBuilder.append(this.getReply(), that.getReply());
equalsBuilder.append(this.getRethrow(), that.getRethrow());
equalsBuilder.append(this.getScope(), that.getScope());
equalsBuilder.append(this.getSequence(), that.getSequence());
equalsBuilder.append(this.getThrow(), that.getThrow());
equalsBuilder.append(this.getValidate(), that.getValidate());
equalsBuilder.append(this.getWait(), that.getWait());
equalsBuilder.append(this.getWhile(), that.getWhile());
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

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

public void hashCode(HashCodeBuilder hashCodeBuilder) {
  super.hashCode(hashCodeBuilder);
  hashCodeBuilder.append(this.getCondition());
  hashCodeBuilder.append(this.getAssign());
  hashCodeBuilder.append(this.getCompensate());
  hashCodeBuilder.append(this.getCompensateScope());
  hashCodeBuilder.append(this.getEmpty());
  hashCodeBuilder.append(this.getExit());
  hashCodeBuilder.append(this.getExtensionActivity());
  hashCodeBuilder.append(this.getFlow());
  hashCodeBuilder.append(this.getForEach());
  hashCodeBuilder.append(this.getIf());
  hashCodeBuilder.append(this.getInvoke());
  hashCodeBuilder.append(this.getPick());
  hashCodeBuilder.append(this.getReceive());
  hashCodeBuilder.append(this.getRepeatUntil());
  hashCodeBuilder.append(this.getReply());
  hashCodeBuilder.append(this.getRethrow());
  hashCodeBuilder.append(this.getScope());
  hashCodeBuilder.append(this.getSequence());
  hashCodeBuilder.append(this.getThrow());
  hashCodeBuilder.append(this.getValidate());
  hashCodeBuilder.append(this.getWait());
  hashCodeBuilder.append(this.getWhile());
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

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

public void hashCode(HashCodeBuilder hashCodeBuilder) {
  super.hashCode(hashCodeBuilder);
  hashCodeBuilder.append(this.getCondition());
  hashCodeBuilder.append(this.getAssign());
  hashCodeBuilder.append(this.getCompensate());
  hashCodeBuilder.append(this.getCompensateScope());
  hashCodeBuilder.append(this.getEmpty());
  hashCodeBuilder.append(this.getExit());
  hashCodeBuilder.append(this.getExtensionActivity());
  hashCodeBuilder.append(this.getFlow());
  hashCodeBuilder.append(this.getForEach());
  hashCodeBuilder.append(this.getIf());
  hashCodeBuilder.append(this.getInvoke());
  hashCodeBuilder.append(this.getPick());
  hashCodeBuilder.append(this.getReceive());
  hashCodeBuilder.append(this.getRepeatUntil());
  hashCodeBuilder.append(this.getReply());
  hashCodeBuilder.append(this.getRethrow());
  hashCodeBuilder.append(this.getScope());
  hashCodeBuilder.append(this.getSequence());
  hashCodeBuilder.append(this.getThrow());
  hashCodeBuilder.append(this.getValidate());
  hashCodeBuilder.append(this.getWait());
  hashCodeBuilder.append(this.getWhile());
}
origin: com.ebmwebsourcing.easybpel/model-bpel-api

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

theCondition = this.getCondition();
toStringBuilder.append("condition", theCondition);
theAssign = this.getAssign();
toStringBuilder.append("assign", theAssign);
theCompensate = this.getCompensate();
toStringBuilder.append("compensate", theCompensate);
theCompensateScope = this.getCompensateScope();
toStringBuilder.append("compensateScope", theCompensateScope);
theEmpty = this.getEmpty();
toStringBuilder.append("empty", theEmpty);
theExit = this.getExit();
toStringBuilder.append("exit", theExit);
theExtensionActivity = this.getExtensionActivity();
toStringBuilder.append("extensionActivity", theExtensionActivity);
theFlow = this.getFlow();
toStringBuilder.append("flow", theFlow);
theForEach = this.getForEach();
toStringBuilder.append("forEach", theForEach);
theIf = this.getIf();
toStringBuilder.append("_if", theIf);
origin: com.ebmwebsourcing.easybpel/model-bpel-api

theCondition = this.getCondition();
toStringBuilder.append("condition", theCondition);
theAssign = this.getAssign();
toStringBuilder.append("assign", theAssign);
theCompensate = this.getCompensate();
toStringBuilder.append("compensate", theCompensate);
theCompensateScope = this.getCompensateScope();
toStringBuilder.append("compensateScope", theCompensateScope);
theEmpty = this.getEmpty();
toStringBuilder.append("empty", theEmpty);
theExit = this.getExit();
toStringBuilder.append("exit", theExit);
theExtensionActivity = this.getExtensionActivity();
toStringBuilder.append("extensionActivity", theExtensionActivity);
theFlow = this.getFlow();
toStringBuilder.append("flow", theFlow);
theForEach = this.getForEach();
toStringBuilder.append("forEach", theForEach);
theIf = this.getIf();
toStringBuilder.append("_if", theIf);
com.ebmwebsourcing.easybpel.model.bpel.executableTElseif

Javadoc

Java class for tElseif complex type.

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

 
<complexType name="tElseif"> 
<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}condition"/> 
<group ref="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}activity"/> 
</sequence> 
<anyAttribute processContents='lax' namespace='##other'/> 
</extension> 
</complexContent> 
</complexType> 

Most used methods

  • <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

  • Reactive rest calls using spring rest template
  • notifyDataSetChanged (ArrayAdapter)
  • getSystemService (Context)
  • getContentResolver (Context)
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • FileUtils (org.apache.commons.io)
    General file manipulation utilities. Facilities are provided in the following areas: * writing to a
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • Top PhpStorm plugins
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