* @param name is the name of the event property
* @return property descriptor
*/
protected static InternalEventPropDescriptor makeMethodDesc(Method method, String name)
{
EventPropertyType propertyType;
if (method.getParameterTypes().length == 1)
{
Class parameterType = method.getParameterTypes()[0];
if (parameterType == String.class)