01: /*
02: * $Id: StaticLocation.java,v 1.1 2004/07/08 14:29:42 cniles Exp $
03: */
04: package javanet.staxutils;
05:
06: import javax.xml.stream.Location;
07:
08: /**
09: * Marker interface used to denote {@link Location} implementations whose state is
10: * not transient or dependent on external objects/events and will remain stable
11: * unless explicitly updated.
12: *
13: * @author Christian Niles
14: * @version $Revision: 1.1 $
15: */
16: public interface StaticLocation extends Location {
17:
18: }
|