KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > thaiopensource > relaxng > parse > Annotations


1 package com.thaiopensource.relaxng.parse;
2
3 /**
4  * Includes attributes and child elements before any RELAX NG element.
5  */

6 public interface Annotations {
7   void addAttribute(String JavaDoc ns, String JavaDoc localName, String JavaDoc prefix, String JavaDoc value, Location loc)
8           throws BuildException;
9   void addElement(ParsedElementAnnotation ea) throws BuildException;
10   /**
11    * Adds comments following the last initial child element annotation.
12    */

13   void addComment(CommentList comments) throws BuildException;
14   void addLeadingComment(CommentList comments) throws BuildException;
15 }
16
Popular Tags