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

How to use
getId
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.getId (Showing top 3 results out of 315)

origin: com.ebmwebsourcing.petalsbpm/petalsbpm-domain

@Override
public void visitItemDefinition(IItemDefinitionBean itemDefinition) {
  if(itemDefinition.getId().equals(this.id) && bean==null){bean = itemDefinition;}
}
@Override
origin: com.ebmwebsourcing.petalsbpm/petalsbpm-domain

public IItemDefinitionBean getItemDefinitionById(String id){
  for(IItemDefinitionBean e : getItemDefinitions()){
    if(e.getId().equals(id)){
      return e;
    }
  }
  return null;
}
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.commonIItemDefinitionBeangetId

Popular methods of IItemDefinitionBean

  • getCollection
  • getItemKind
  • getStructureRef
  • setCollection
  • setItemKind
  • setStructureRef

Popular in Java

  • Making http post requests using okhttp
  • onCreateOptionsMenu (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • setScale (BigDecimal)
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • Runner (org.openjdk.jmh.runner)
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • Best plugins for Eclipse
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