An immutable StAX Location.
Location
5455565758596061626364
* Constructor. */ XMLEventImpl(final int eventType, final Location location) { fEventType = eventType; if (location != null) { fLocation = new ImmutableLocation(location); } else { fLocation = EmptyLocation.getInstance(); } }