Example #1
0
 /**
  * Adds values passed as parameter to the macros object
  *
  * @param value
  */
 private void collectMacros(String value) {
   if (value != null) {
     if (macros == null) {
       macros = new HashSet<String>();
     }
     macros.addAll(ProcessHelper.getReplaceKeys(value));
   }
 }