Example #1
0
 /**
  * Sets an Integer property associated with the current event. Calling this method is equivilent
  * to calling <code>event.getMessage().setIntProperty(..., ...)</code>
  *
  * @param name the property name or key
  * @param value the property value
  */
 public void setIntProperty(String name, int value) {
   event.setIntProperty(name, value);
 }