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. public interface XPointerSchema extends XMLComponent, XMLDocumentFilter{
  5. /**
  6. * set the Schema Name eg element , xpointer
  7. */
  8. public void setXPointerSchemaName(String schemaName);
  9. /**
  10. * Return Schema Name eg element , xpointer
  11. *
  12. */
  13. public String getXpointerSchemaName();
  14. /**
  15. * Parent Contenhandler for the this contenthandler.
  16. * // not sure about the parameter type. It can be Contenthandler instead of Object type.
  17. */
  18. public void setParent(Object parent);
  19. /**
  20. * return the Parent Contenthandler
  21. */
  22. public Object getParent();
  23. /**
  24. * Content of the XPointer Schema. Xpath to be resolved.
  25. */
  26. public void setXPointerSchemaPointer(String content);
  27. /**
  28. * Return the XPointer Schema.
  29. */
  30. public String getXPointerSchemaPointer();
  31. public boolean isSubResourceIndentified();
  32. public void reset();
  33. }