/**
   * @see
   *     org.kuali.rice.krad.datadictionary.validation.CharacterLevelValidationPattern#extendExportMap(org.kuali.rice.krad.datadictionary.exporter.ExportMap)
   */
  public void extendExportMap(ExportMap exportMap) {
    exportMap.set("type", "anyCharacter");

    if (allowWhitespace) {
      exportMap.set("allowWhitespace", "true");
    }
  }
示例#2
0
 /**
  * If the given map is not null, adds the ExportMap's exportKey and exportData as a key,value pair
  * to this Map.
  */
 public void setOptional(ExportMap map) {
   if (map != null) {
     set(map);
   }
 }