/[classpath]/classpath/gnu/javax/swing/text/html/parser/support/Parser.java
ViewVC logotype

Diff of /classpath/gnu/javax/swing/text/html/parser/support/Parser.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by audriusa, Thu Mar 10 12:10:38 2005 UTC revision 1.2 by tromey, Tue Apr 26 18:56:19 2005 UTC
# Line 157  public class Parser Line 157  public class Parser
157    
158    /**    /**
159     * The attributes of the current HTML element.     * The attributes of the current HTML element.
160       * Package-private to avoid an accessor method.
161     */     */
162    private htmlAttributeSet attributes =    htmlAttributeSet attributes =
163      htmlAttributeSet.EMPTY_HTML_ATTRIBUTE_SET;      htmlAttributeSet.EMPTY_HTML_ATTRIBUTE_SET;
164    
165    /**    /**
# Line 1154  public class Parser Line 1155  public class Parser
1155    
1156    /**    /**
1157     * Actions that are also required if the closing action was     * Actions that are also required if the closing action was
1158     * intiated by the tag validator.     * initiated by the tag validator.
1159       * Package-private to avoid an accessor method.
1160     */     */
1161    private void _handleEndTag_remaining(TagElement tag)    void _handleEndTag_remaining(TagElement tag)
1162    {    {
1163      HTML.Tag h = tag.getHTMLTag();      HTML.Tag h = tag.getHTMLTag();
1164    
# Line 1183  public class Parser Line 1185  public class Parser
1185     * A hooks for operations, preceeding call to handleStartTag().     * A hooks for operations, preceeding call to handleStartTag().
1186     * The method is called when the HTML opening tag ((like <table>)     * The method is called when the HTML opening tag ((like <table>)
1187     * is found.     * is found.
1188       * Package-private to avoid an accessor method.
1189     * @param The tag     * @param The tag
1190     */     */
1191    private void _handleStartTag(TagElement tag)    void _handleStartTag(TagElement tag)
1192    {    {
1193      validator.openTag(tag, attributes);      validator.openTag(tag, attributes);
1194      startingTag(tag);      startingTag(tag);

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26