Home | History | Annotate | Download | only in header

Lines Matching defs:eventType

53     protected String eventType;
66 eventType = m;
70 * Sets the eventType defined in this AllowEventsHeader.
72 * @param eventType - the String defining the method supported
75 * unexpectedly while parsing the Strings defining the eventType supported
77 public void setEventType(String eventType) throws ParseException {
78 if (eventType == null)
81 + "AllowEvents, setEventType(), the eventType parameter is null");
82 this.eventType = eventType;
86 * Gets the eventType of the AllowEventsHeader.
91 return eventType;
98 return eventType;