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

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

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

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

public void hashCode(HashCodeBuilder hashCodeBuilder) {
  super.hashCode(hashCodeBuilder);
  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());
  hashCodeBuilder.append(this.getCondition());
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

public Object copyTo(Object target, CopyBuilder copyBuilder) {
  final TRepeatUntil copy = ((target == null)?((TRepeatUntil) createCopy()):((TRepeatUntil) target));
  super.copyTo(copy, copyBuilder);
    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));
    copy.setExtensionActivity(copyExtensionActivity);
    sourceFlow = this.getFlow();
    TFlow copyFlow = ((TFlow) copyBuilder.copy(sourceFlow));
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

public static Activity analyzeRepeatUntilActivity(final TRepeatUntil internalActivity, final BPELElementImpl parent) throws BPELException {
  Activity res = null;
  final TRepeatUntil 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 RepeatUntilImpl(final TRepeatUntil model, final BPELElementImpl parent) {
  super(Constants._RepeatUntil_QNAME, model, parent);
  if(this.model.getCondition() != null) {
    try {
      this.condition = new BPELBooleanExpressionImpl(this.model.getCondition(), parent);
    } catch (XPathExpressionException e) {
      BPELStaticAnalysisImpl.getInstance().addError(new BPELErrorImpl(this, new BPELException(e)));
    }
    if((this.model.getCondition().getContent() != null)&&
        (this.model.getCondition().getContent().size() > 0)) {
      this.condition.setContent((String)this.model.getCondition().getContent().get(0));
    }
  }
  try {
    this.activity = ActivityImpl.analyzeRepeatUntilActivity(this.model, this);
  } catch (final BPELException e) {
    BPELStaticAnalysisImpl.getInstance().addError(new BPELErrorImpl(this, new BPELException("In repeatUntil " + this.getName() + " => " + e.getMessage(), e)));
  }
}
origin: com.ebmwebsourcing.easybpel/model-bpel-api

public Object copyTo(Object target, CopyBuilder copyBuilder) {
  final TRepeatUntil copy = ((target == null)?((TRepeatUntil) createCopy()):((TRepeatUntil) target));
  super.copyTo(copy, copyBuilder);
    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));
    copy.setExtensionActivity(copyExtensionActivity);
    sourceFlow = this.getFlow();
    TFlow copyFlow = ((TFlow) copyBuilder.copy(sourceFlow));
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

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

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());
equalsBuilder.append(this.getCondition(), that.getCondition());
origin: com.ebmwebsourcing.easybpel/model-bpel-api

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());
equalsBuilder.append(this.getCondition(), that.getCondition());
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

public void hashCode(HashCodeBuilder hashCodeBuilder) {
  super.hashCode(hashCodeBuilder);
  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());
  hashCodeBuilder.append(this.getCondition());
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

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);
theInvoke = this.getInvoke();
toStringBuilder.append("invoke", theInvoke);
origin: com.ebmwebsourcing.easybpel/model-bpel-api

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);
theInvoke = this.getInvoke();
toStringBuilder.append("invoke", theInvoke);
com.ebmwebsourcing.easybpel.model.bpel.executableTRepeatUntil

Javadoc

Java class for tRepeatUntil complex type.

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

 
<complexType name="tRepeatUntil"> 
<complexContent> 
<extension base="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}tActivity"> 
<sequence> 
<group ref="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}activity"/> 
<element ref="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}condition"/> 
</sequence> 
<anyAttribute processContents='lax' namespace='##other'/> 
</extension> 
</complexContent> 
</complexType> 

Most used methods

  • 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.
  • getReply
    Gets the value of the reply property.
  • getRepeatUntil,
  • getReply,
  • getRethrow,
  • getScope,
  • getSequence,
  • getThrow,
  • getWait,
  • getWhile,
  • <init>,
  • copyTo

Popular in Java

  • Parsing JSON documents to java classes using gson
  • scheduleAtFixedRate (ScheduledExecutorService)
  • setScale (BigDecimal)
  • setContentView (Activity)
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • JCheckBox (javax.swing)
  • Best IntelliJ 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