Home | History | Annotate | Download | only in header

Lines Matching refs:eventType

52     protected String eventType;
62 * Sets the eventType to the newly supplied eventType string.
64 * @param eventType - the new string defining the eventType supported
67 * unexpectedly while parsing the eventType value.
69 public void setEventType(String eventType) throws ParseException {
70 if (eventType == null)
71 throw new NullPointerException(" the eventType is null");
72 this.eventType = eventType;
76 * Gets the eventType of the EventHeader.
78 * @return the string object identifing the eventType of EventHeader.
81 return eventType;
115 if (eventType != null)
116 buffer.append(eventType);
131 if (matchTarget.eventType == null && this.eventType != null)
133 else if (matchTarget.eventType != null && this.eventType == null)
135 else if (this.eventType == null && matchTarget.eventType == null)
141 return matchTarget.eventType.equalsIgnoreCase(this.eventType)