KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > org > apache > xerces > internal > xinclude > XPointerSchema


1 package com.sun.org.apache.xerces.internal.xinclude;
2 import com.sun.org.apache.xerces.internal.xni.parser.XMLComponent;
3 import com.sun.org.apache.xerces.internal.xni.parser.XMLDocumentFilter;
4
5
6
7 public interface XPointerSchema extends XMLComponent, XMLDocumentFilter{
8
9     /**
10      * set the Schema Name eg element , xpointer
11      */

12     public void setXPointerSchemaName(String JavaDoc schemaName);
13
14     /**
15      * Return Schema Name eg element , xpointer
16      *
17      */

18     public String JavaDoc getXpointerSchemaName();
19
20     /**
21      * Parent Contenhandler for the this contenthandler.
22      * // not sure about the parameter type. It can be Contenthandler instead of Object type.
23      */

24     public void setParent(Object JavaDoc parent);
25
26     /**
27      * return the Parent Contenthandler
28      */

29     public Object JavaDoc getParent();
30
31     /**
32      * Content of the XPointer Schema. Xpath to be resolved.
33      */

34     public void setXPointerSchemaPointer(String JavaDoc content);
35
36     /**
37      * Return the XPointer Schema.
38      */

39     public String JavaDoc getXPointerSchemaPointer();
40
41     public boolean isSubResourceIndentified();
42
43     public void reset();
44
45 }
46
Popular Tags