Tabnine Logo
IItemDefinitionBean.getStructureRef
Code IndexAdd Tabnine to your IDE (free)

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

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

origin: com.ebmwebsourcing.petalsbpm/definitions-editor

@Override
protected boolean isValid(IItemDefinitionBean data) {
  
  if (data.getItemKind()!=null && data.getStructureRef()!=null ){
    return true;
  }
  
  return false;
}
origin: com.ebmwebsourcing.petalsbpm/definitions-editor

@Override
protected Object[] convertDataToObject(IItemDefinitionBean data) {
  
  Object[] object = new Object[3];
  
  object[0] = data.getItemKind();
  object[1] = data.getStructureRef();
  object[2] = data.getCollection();
  
  
  return object;
}

origin: com.ebmwebsourcing.petalsbpm/definitions-editor

private void validate(List<IItemDefinitionBean> itemDefinitions){
  
  for(IItemDefinitionBean id:itemDefinitions){
    
    if (id.getStructureRef()!=null && id.getItemKind()!=null && validItems.contains(id)==false){
      
      validItems.add(id);
      
      fireEvent(new AddItemDefinitionEvent(id));
      
    }
    
  }
  
}

origin: com.ebmwebsourcing.petalsbpm/petalsbpm-service

@Override
public void visitItemDefinition(IItemDefinitionBean idb) {
  ItemDefinition id = newInstance(ItemDefinition.class);
  id.setIsCollection(idb.getCollection());
  setDocumentationAndExtensions(id, idb);
  id.setId(idb.getId());
  id.setItemKind(retrieveItemKind(idb.getItemKind()));
  if(idb.getStructureRef()!=null){
    id.setStructureRef(getQNameFromString(idb.getStructureRef()));
  }
  
  defs.addRootElement(id);
}

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

Popular methods of IItemDefinitionBean

  • getCollection
  • getId
  • getItemKind
  • setCollection
  • setItemKind
  • setStructureRef

Popular in Java

  • Start an intent from android
  • getExternalFilesDir (Context)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • compareTo (BigDecimal)
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement. A servlet is a small Java program that runs within
  • JFrame (javax.swing)
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • 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