Tabnine Logo
FormItemRepresentation.setDataMap
Code IndexAdd Tabnine to your IDE (free)

How to use
setDataMap
method
in
org.jbpm.form.builder.services.model.FormItemRepresentation

Best Java code snippets using org.jbpm.form.builder.services.model.FormItemRepresentation.setDataMap (Showing top 20 results out of 315)

origin: org.jbpm/form-services

@Override
public void setDataMap(Map<String, Object> data)
    throws FormEncodingException {
  super.setDataMap(data);
  this.content = (String) data.get("content");
}
origin: org.jbpm/jbpm-form-services

@Override
public void setDataMap(Map<String, Object> data)
    throws FormEncodingException {
  super.setDataMap(data);
  this.content = (String) data.get("content");
}
origin: org.jbpm/form-services

@Override
public void setDataMap(Map<String, Object> data) throws FormEncodingException {
  this.html = (String) data.get("html");
  super.setDataMap(data);
}

origin: org.jbpm/jbpm-form-services

@Override
public void setDataMap(Map<String, Object> data) throws FormEncodingException {
  super.setDataMap(data);
  this.script = (String) data.get("script");
  this.language = (String) data.get("language");
}

origin: org.jbpm/form-services

@Override
public void setDataMap(Map<String, Object> data) throws FormEncodingException {
  this.type = (String) data.get("type");
  this.src = (String) data.get("src");
  super.setDataMap(data);
}
origin: org.jbpm/jbpm-form-services

@Override
public void setDataMap(Map<String, Object> data)
    throws FormEncodingException {
  super.setDataMap(data);
  this.label = (String) data.get("label");
  this.value = (String) data.get("value");
}
origin: org.jbpm/jbpm-form-services

@Override
public void setDataMap(Map<String, Object> data) throws FormEncodingException {
  this.type = (String) data.get("type");
  this.src = (String) data.get("src");
  super.setDataMap(data);
}
origin: org.jbpm/form-services

@Override
public void setDataMap(Map<String, Object> data)
    throws FormEncodingException {
  super.setDataMap(data);
  this.id = (String) data.get("id");
  this.name = (String) data.get("name");
  this.value = (String) data.get("value");
}
origin: org.jbpm/form-services

@Override
public void setDataMap(Map<String, Object> data)
    throws FormEncodingException {
  super.setDataMap(data);
  this.name = (String) data.get("name");
  this.id = (String) data.get("id");
  this.accept = (String) data.get("accept");
}
origin: org.jbpm/form-services

@Override
public void setDataMap(Map<String, Object> data)
    throws FormEncodingException {
  super.setDataMap(data);    
  this.defaultValue = (String) data.get("defaultValue");
  this.calendarCss = (String) data.get("calendarCss");
  this.iconUrl = (String) data.get("iconUrl");
}

origin: org.jbpm/jbpm-form-services

@Override
public void setDataMap(Map<String, Object> data)
    throws FormEncodingException {
  super.setDataMap(data);
  this.id = (String) data.get("id");
  this.name = (String) data.get("name");
  this.value = (String) data.get("value");
}
origin: org.jbpm/jbpm-form-services

@Override
public void setDataMap(Map<String, Object> data)
    throws FormEncodingException {
  super.setDataMap(data);
  this.audioUrl = (String) data.get("audioUrl");
  this.cssClassName = (String) data.get("cssClassName");
  this.dataType = (String) data.get("dataType");
  this.id = (String) data.get("id");
}
origin: org.jbpm/jbpm-form-services

@Override
public void setDataMap(Map<String, Object> data)
    throws FormEncodingException {
  super.setDataMap(data);
  this.fallbackUrl = (String) data.get("fallbackUrl");
  this.cssClassName = (String) data.get("cssClassName");
  this.dataType = (String) data.get("dataType");
  this.id = (String) data.get("id");
}
origin: org.jbpm/form-services

@Override
public void setDataMap(Map<String, Object> data)
    throws FormEncodingException {
  super.setDataMap(data);
  this.audioUrl = (String) data.get("audioUrl");
  this.cssClassName = (String) data.get("cssClassName");
  this.dataType = (String) data.get("dataType");
  this.id = (String) data.get("id");
}
origin: org.jbpm/form-services

@Override
public void setDataMap(Map<String, Object> data)
    throws FormEncodingException {
  super.setDataMap(data);
  this.defaultValue = (String) data.get("defaultValue");
  this.name = (String) data.get("name");
  this.id = (String) data.get("id");
  Object obj = data.get("maxLength");
  if (obj != null) {
    this.maxLength = ((Number) obj).intValue();
  }
}
origin: org.jbpm/jbpm-form-services

@Override
public void setDataMap(Map<String, Object> data)
    throws FormEncodingException {
  super.setDataMap(data);
  this.defaultValue = (String) data.get("defaultValue");
  this.name = (String) data.get("name");
  this.id = (String) data.get("id");
  Object obj = data.get("maxLength");
  if (obj != null) {
    this.maxLength = ((Number) obj).intValue();
  }
}
origin: org.jbpm/jbpm-form-services

@Override
public void setDataMap(Map<String, Object> data)
    throws FormEncodingException {
  super.setDataMap(data);
  this.name = (String) data.get("name");
  this.rows = (data.get("rows") == null ? 0 : ((Number) data.get("rows"))
      .intValue());
  this.cols = (data.get("cols") == null ? 0 : ((Number) data.get("cols"))
      .intValue());
  this.value = (String) data.get("value");
  this.id = (String) data.get("id");
}
origin: org.jbpm/jbpm-form-services

@Override
@SuppressWarnings("unchecked")
public void setDataMap(Map<String, Object> data) throws FormEncodingException {
  super.setDataMap(data);
  this.inputName = (String) data.get("inputName");
  this.variableName = (String) data.get("variableName");
  this.loopBlock = (FormItemRepresentation) FormEncodingFactory.getDecoder().decode((Map<String, Object>) data.get("loopBlock"));
}

origin: org.jbpm/form-services

@Override
public void setDataMap(Map<String, Object> data)
    throws FormEncodingException {
  super.setDataMap(data);
  this.autoSubmit = extractBoolean(data.get("autoSubmit"));
  this.avoidRepeatFiles = extractBoolean(data.get("avoidRepeatFiles"));
  this.enabled = extractBoolean(data.get("enabled"));
  this.cssClassName = (String) data.get("cssClassName");
}

origin: org.jbpm/jbpm-form-services

@Override
@SuppressWarnings("unchecked")
public void setDataMap(Map<String, Object> data) throws FormEncodingException {
  super.setDataMap(data);
  this.condition = (String) data.get("condition");
  FormRepresentationDecoder decoder = FormEncodingFactory.getDecoder();
  this.ifBlock = (FormItemRepresentation) decoder.decode((Map<String, Object>) data.get("ifBlock"));
  this.elseBlock = (FormItemRepresentation) decoder.decode((Map<String, Object>) data.get("elseBlock"));
}

org.jbpm.form.builder.services.modelFormItemRepresentationsetDataMap

Popular methods of FormItemRepresentation

  • getDataMap
  • equals
  • hashCode

Popular in Java

  • Parsing JSON documents to java classes using gson
  • notifyDataSetChanged (ArrayAdapter)
  • onCreateOptionsMenu (Activity)
  • getSupportFragmentManager (FragmentActivity)
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
  • 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