Tabnine Logo
IIOSpecificationBean.addDataOutput
Code IndexAdd Tabnine to your IDE (free)

How to use
addDataOutput
method
in
com.ebmwebsourcing.petalsbpm.business.domain.bpmn2.to.api.standard.process.data.IIOSpecificationBean

Best Java code snippets using com.ebmwebsourcing.petalsbpm.business.domain.bpmn2.to.api.standard.process.data.IIOSpecificationBean.addDataOutput (Showing top 6 results out of 315)

origin: com.ebmwebsourcing.petalsbpm/petalsbpm-domain

private void synchronizeWithCatchEvent(ICatchEventBean e) {
  for(IItemAwareElementBean data : e.getOutgoingItemAwareElements()) {
    //if its a dataObject add it to current process
    if (data instanceof IDataObjectBean) {
      this.addDataObject((IDataObjectBean) data);
    //if its a dataInput/dataOuput add it to current processes ioSpecification	
    }else if(data instanceof IDataOutputBean) {
      this.getIoSpecification().addDataOutput((IDataOutputBean) data);
    }            
  }        
}

origin: com.ebmwebsourcing.petalsbpm/petalsbpm-domain

this.dataOutputs.add(target);
this.ioSpecification.addDataOutput(source);
    this.getProcess().getIoSpecification().addDataOutput(doutput);
origin: com.ebmwebsourcing.petalsbpm/petalsbpm-domain

this.getProcess().getIoSpecification().addDataOutput(doutput);
origin: com.ebmwebsourcing.petalsbpm/petalsbpm-domain

@Override
public void addDataInput(IItemAwareElementBean source,IDataInputBean target) {
  this.incomingItemAwareElements.add(source);
  
  this.addDataInput(target);
  
  if (this.getProcess()!=null){
    //if its a dataObject add it to current process
    if (source instanceof IDataObjectBean){
      IDataObjectBean dataObject = (IDataObjectBean) source;
      this.getProcess().addDataObject(dataObject);
    //if its a dataInput/dataOuput add it to current processes ioSpecification				
    }else if (source instanceof IDataInputBean){
      IDataInputBean dinput = (IDataInputBean) source;
      this.getProcess().getIoSpecification().addDataInput(dinput);
    }else if(source instanceof IDataOutputBean){
      IDataOutputBean doutput = (IDataOutputBean) source;
      this.getProcess().getIoSpecification().addDataOutput(doutput);
    }
  }
}
origin: com.ebmwebsourcing.petalsbpm/petalsbpm-domain

@Override
public void addDataOutput(IDataOutputBean source,IItemAwareElementBean target) {
  this.outgoingItemAwareElements.add(target);
  this.addDataOutput(source);
  
  if (this.getProcess()!=null){
    //if its a dataObject add it to current process
    if (target instanceof IDataObjectBean){
      IDataObjectBean dataObject = (IDataObjectBean) target;
      this.getProcess().addDataObject(dataObject);
    //if its a dataInput/dataOuput add it to current processes ioSpecification				
    }else if (target instanceof IDataInputBean){
      IDataInputBean dinput = (IDataInputBean) target;
      this.getProcess().getIoSpecification().addDataInput(dinput);
    }else if(target instanceof IDataOutputBean){
      IDataOutputBean doutput = (IDataOutputBean) target;
      this.getProcess().getIoSpecification().addDataOutput(doutput);
    }
  }
}
////////////////////////////////////////////
origin: com.ebmwebsourcing.petalsbpm/petalsbpm-domain

private void synchronizeWith(IActivityBean activity){
  //consider data object / data input /data output
  for(IItemAwareElementBean data:activity.getDataInputs()){
    //if its a dataObject add it to current process
    if (data instanceof IDataObjectBean){
      IDataObjectBean dataObject = (IDataObjectBean) data;
      this.addDataObject(dataObject);
    //if its a dataInput/dataOuput add it to current processes ioSpecification	
    }else if (data instanceof IDataInputBean){
      IDataInputBean dinput = (IDataInputBean) data;
      this.getIoSpecification().addDataInput(dinput);
    }
  }
  
  for(IItemAwareElementBean data:activity.getDataOutputs()){
    //if its a dataObject add it to current process
    if (data instanceof IDataObjectBean){
      IDataObjectBean dataObject = (IDataObjectBean) data;
      this.addDataObject(dataObject);
    //if its a dataInput/dataOuput add it to current processes ioSpecification	
    }else if(data instanceof IDataOutputBean){
      IDataOutputBean doutput = (IDataOutputBean) data;
      this.getIoSpecification().addDataOutput(doutput);
    }            
  }        
}

com.ebmwebsourcing.petalsbpm.business.domain.bpmn2.to.api.standard.process.dataIIOSpecificationBeanaddDataOutput

Popular methods of IIOSpecificationBean

  • getDataInputs
  • getDataOutputs
  • getId
  • addDataInput

Popular in Java

  • Creating JSON documents from java classes using gson
  • findViewById (Activity)
  • scheduleAtFixedRate (Timer)
  • requestLocationUpdates (LocationManager)
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • Top Vim 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