Example #1
0
 /**
  * Returns the textual representation of this reader current state.
  *
  * @return the textual representation of the current state.
  */
 public String toString() {
   return "XMLStreamReader - State: "
       + NAMES_OF_EVENTS[_eventType]
       + ", Location: "
       + _location.toString();
 }