congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
TActivity.getSources
Code IndexAdd Tabnine to your IDE (free)

How to use
getSources
method
in
com.ebmwebsourcing.easybpel.model.bpel.executable.TActivity

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

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

public void hashCode(HashCodeBuilder hashCodeBuilder) {
  super.hashCode(hashCodeBuilder);
  hashCodeBuilder.append(this.getTargets());
  hashCodeBuilder.append(this.getSources());
  hashCodeBuilder.append(this.getName());
  hashCodeBuilder.append(this.getSuppressJoinFailure());
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

@SuppressWarnings("unchecked")
public ActivityImpl(final QName name, final E model, final BPELElement parent) {
  super(name, model, parent);
  if(model != null) {
    if(this.model.getSources() != null) {
      this.sources = new SourcesImpl(this.model.getSources(), this);
    }
    if(this.model.getTargets() != null) {
      this.targets = new TargetsImpl(this.model.getTargets(), this);
    }
  }
}
origin: com.ebmwebsourcing.easybpel/model-bpel-api

@SuppressWarnings("unchecked")
public AbstractActivityImpl(final QName name, final E model, final BPELElement parent) {
  super(name, model, parent);
  if(model != null) {
    if(this.model.getSources() != null) {
      this.sources = new SourcesImpl(this.model.getSources(), this);
    }
    if(this.model.getTargets() != null) {
      this.targets = new TargetsImpl(this.model.getTargets(), this);
    }
  }
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

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

@SuppressWarnings("unchecked")
public AbstractActivityImpl(final QName name, final E model, final BPELElement parent) {
  super(name, model, parent);
  if(model != null) {
    if(this.model.getSources() != null) {
      this.sources = new SourcesImpl(this.model.getSources(), this);
    }
    if(this.model.getTargets() != null) {
      this.targets = new TargetsImpl(this.model.getTargets(), this);
    }
  }
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

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

public void toString(ToStringBuilder toStringBuilder) {
  super.toString(toStringBuilder);
  {
    TTargets theTargets;
    theTargets = this.getTargets();
    toStringBuilder.append("targets", theTargets);
  }
  {
    TSources theSources;
    theSources = this.getSources();
    toStringBuilder.append("sources", theSources);
  }
  {
    String theName;
    theName = this.getName();
    toStringBuilder.append("name", theName);
  }
  {
    TBoolean theSuppressJoinFailure;
    theSuppressJoinFailure = this.getSuppressJoinFailure();
    toStringBuilder.append("suppressJoinFailure", theSuppressJoinFailure);
  }
}
origin: com.ebmwebsourcing.easybpel/model-bpel-api

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

public void toString(ToStringBuilder toStringBuilder) {
  super.toString(toStringBuilder);
  {
    TTargets theTargets;
    theTargets = this.getTargets();
    toStringBuilder.append("targets", theTargets);
  }
  {
    TSources theSources;
    theSources = this.getSources();
    toStringBuilder.append("sources", theSources);
  }
  {
    String theName;
    theName = this.getName();
    toStringBuilder.append("name", theName);
  }
  {
    TBoolean theSuppressJoinFailure;
    theSuppressJoinFailure = this.getSuppressJoinFailure();
    toStringBuilder.append("suppressJoinFailure", theSuppressJoinFailure);
  }
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

public Object copyTo(Object target, CopyBuilder copyBuilder) {
  final TActivity copy = ((target == null)?((TActivity) createCopy()):((TActivity) target));
  super.copyTo(copy, copyBuilder);
  {
    TTargets sourceTargets;
    sourceTargets = this.getTargets();
    TTargets copyTargets = ((TTargets) copyBuilder.copy(sourceTargets));
    copy.setTargets(copyTargets);
  }
  {
    TSources sourceSources;
    sourceSources = this.getSources();
    TSources copySources = ((TSources) copyBuilder.copy(sourceSources));
    copy.setSources(copySources);
  }
  {
    String sourceName;
    sourceName = this.getName();
    String copyName = ((String) copyBuilder.copy(sourceName));
    copy.setName(copyName);
  }
  {
    TBoolean sourceSuppressJoinFailure;
    sourceSuppressJoinFailure = this.getSuppressJoinFailure();
    TBoolean copySuppressJoinFailure = ((TBoolean) copyBuilder.copy(sourceSuppressJoinFailure));
    copy.setSuppressJoinFailure(copySuppressJoinFailure);
  }
  return copy;
}
origin: com.ebmwebsourcing.easybpel/model-bpel-api

public Object copyTo(Object target, CopyBuilder copyBuilder) {
  final TActivity copy = ((target == null)?((TActivity) createCopy()):((TActivity) target));
  super.copyTo(copy, copyBuilder);
  {
    TTargets sourceTargets;
    sourceTargets = this.getTargets();
    TTargets copyTargets = ((TTargets) copyBuilder.copy(sourceTargets));
    copy.setTargets(copyTargets);
  }
  {
    TSources sourceSources;
    sourceSources = this.getSources();
    TSources copySources = ((TSources) copyBuilder.copy(sourceSources));
    copy.setSources(copySources);
  }
  {
    String sourceName;
    sourceName = this.getName();
    String copyName = ((String) copyBuilder.copy(sourceName));
    copy.setName(copyName);
  }
  {
    TBoolean sourceSuppressJoinFailure;
    sourceSuppressJoinFailure = this.getSuppressJoinFailure();
    TBoolean copySuppressJoinFailure = ((TBoolean) copyBuilder.copy(sourceSuppressJoinFailure));
    copy.setSuppressJoinFailure(copySuppressJoinFailure);
  }
  return copy;
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

public void validate() {
  // validation
  if(((TActivity)((BPELElementImpl)this.activity).getModel()).getSources() != null) {
    BPELStaticAnalysisImpl.getInstance().addInfo(new BPELInfoImpl(this.activity, "[BPEL engine restriction] Sorry, but \"sources\" elements are not supported for the moment"));
    BPELStaticAnalysisImpl.getInstance().addError(new BPELErrorImpl(this.activity, new BPELException("[BPEL engine restriction] Sorry, but \"sources\" elements are not supported for the moment")));
  }
  if(((TActivity)((BPELElementImpl)this.activity).getModel()).getTargets() != null) {
    BPELStaticAnalysisImpl.getInstance().addInfo(new BPELInfoImpl(this.activity, "[BPEL engine restriction] Sorry, but \"targets\" elements are not supported for the moment"));
    BPELStaticAnalysisImpl.getInstance().addError(new BPELErrorImpl(this.activity, new BPELException("[BPEL engine restriction] Sorry, but \"sources\" elements are not supported for the moment")));
  }
  if(((TActivity)((BPELElementImpl)this.activity).getModel()).getSuppressJoinFailure() != null) {
    BPELStaticAnalysisImpl.getInstance().addInfo(new BPELInfoImpl(this.activity, "[BPEL engine restriction] Sorry, but the suppressJoinFailure attribute is ignored for the moment"));
    BPELStaticAnalysisImpl.getInstance().addError(new BPELErrorImpl(this.activity, new BPELException("[BPEL engine restriction] Sorry, but \"sources\" elements are not supported for the moment")));
  }
}
com.ebmwebsourcing.easybpel.model.bpel.executableTActivitygetSources

Javadoc

Gets the value of the sources property.

Popular methods of TActivity

  • getName
    Gets the value of the name property.
  • getSuppressJoinFailure
    Gets the value of the suppressJoinFailure property.
  • getTargets
    Gets the value of the targets property.
  • <init>
  • copyTo
  • createCopy
  • equals
  • getOtherAttributes
  • hashCode
  • setName
    Sets the value of the name property.
  • setSources
    Sets the value of the sources property.
  • setSuppressJoinFailure
    Sets the value of the suppressJoinFailure property.
  • setSources,
  • setSuppressJoinFailure,
  • setTargets,
  • toString

Popular in Java

  • Running tasks concurrently on multiple threads
  • getSharedPreferences (Context)
  • setScale (BigDecimal)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • Menu (java.awt)
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • Collectors (java.util.stream)
  • JLabel (javax.swing)
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • Top 12 Jupyter Notebook extensions
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