Packagecom.asfusion.mate.events
Classpublic dynamic class EventProperties

You can add properties to your event by using the EventProperties tag inside the eventProperties attibute in the Dispatcher. The properties to set in your event must be public. As attributes of the EventProperties tag, you can specify the names of your properties and set the values of those properties by setting the value of those attributes.


Example
  <mate:Dispatcher generator="{MyEvent}" type="{MyEvent.MY_EVENT_TYPE}">
         <mate:eventProperties>
               <mate:EventProperties
                     myProperty="myValue"
                     myProperty2="100" />
         </mate:eventProperties>
  </mate:Dispatcher>