01: /* Locator.java
02:
03: {{IS_NOTE
04:
05: Purpose:
06: Description:
07: History:
08: 2001/10/26 16:11:27, Create, Tom M. Yeh.
09: }}IS_NOTE
10:
11: Copyright (C) 2001 Potix Corporation. All Rights Reserved.
12:
13: {{IS_RIGHT
14: This program is distributed under GPL Version 2.0 in the hope that
15: it will be useful, but WITHOUT ANY WARRANTY.
16: }}IS_RIGHT
17: */
18: package org.zkoss.xml;
19:
20: /**
21: * The interface represents the source locator.
22: *
23: * <p>Unfortunately, Java XML has two interfaces doing the same thing:
24: * org.w3c.sax.Locator and javax.xml.Transform.SourceLocator.
25: * This class is, thus, to provide to bridge both.
26: *
27: * <p>Our applications, that provide source location info, shall
28: * implements this interface, rather than any of above.
29: *
30: * @author tomyeh
31: */
32: public interface Locator extends org.xml.sax.Locator,
33: javax.xml.transform.SourceLocator {
34: }
|