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

How to use
getStructureRef
method
in
com.ebmwebsourcing.petalsbpm.business.domain.bpmn2.to.api.standard.common.IErrorBean

Best Java code snippets using com.ebmwebsourcing.petalsbpm.business.domain.bpmn2.to.api.standard.common.IErrorBean.getStructureRef (Showing top 4 results out of 315)

origin: com.ebmwebsourcing.petalsbpm/definitions-editor

@Override
protected Object[] convertDataToObject(IErrorBean data) {
  
  Object[] object = new Object[3];
  
  object[0] = data.getName();
  object[1] = data.getStructureRef();
  object[2] = data.getErrorCode();
  
  return object;
}
origin: com.ebmwebsourcing.petalsbpm/definitions-editor

@Override
protected boolean isValid(IErrorBean data) {
  
  if (data.getName()!=null && data.getStructureRef()!=null && data.getErrorCode()!=null){
    return true;
  }
  
  return false;
}

origin: com.ebmwebsourcing.petalsbpm/definitions-editor

private void validate(List<IErrorBean> errors){
  
  for(IErrorBean eb:errors){
    
    if (eb.getName()!=null && eb.getErrorCode()!=null && eb.getStructureRef()!=null){
      
      fireEvent(new AddErrorEvent(eb));
      validErrors.add(eb);
    
    }
    
  }
  
}

origin: com.ebmwebsourcing.petalsbpm/petalsbpm-service

@Override
public void visitError(IErrorBean eb) {
  Error e = newInstance(Error.class);
  e.setId(eb.getId());
  e.setName(eb.getName());
  e.setErrorCode(eb.getErrorCode());
  setDocumentationAndExtensions(e, eb);
  if(eb.getStructureRef()!=null){
    e.setStructureRef(getBaseElementRef(eb.getStructureRef()));
  }
  defs.addRootElement(e);
}

com.ebmwebsourcing.petalsbpm.business.domain.bpmn2.to.api.standard.commonIErrorBeangetStructureRef

Popular methods of IErrorBean

  • getErrorCode
  • getId
  • getName
  • setErrorCode
  • setName
  • setStructureRef

Popular in Java

  • Making http post requests using okhttp
  • getSupportFragmentManager (FragmentActivity)
  • scheduleAtFixedRate (Timer)
  • getSharedPreferences (Context)
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • JFileChooser (javax.swing)
  • 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