Imported GNU Classpath 0.19 + gcj-import-20051115.

* sources.am: Regenerated.
       * Makefile.in: Likewise.
       * scripts/makemake.tcl: Use glob -nocomplain.

From-SVN: r107049
This commit is contained in:
Mark Wielaard 2005-11-15 23:20:01 +00:00
parent 02e549bfaa
commit 8f523f3a10
1241 changed files with 97711 additions and 25284 deletions

View file

@ -945,22 +945,22 @@ public class HTML
* This tag is not included into the array, returned by getAllTags().
* toString() returns 'comment'. HTML reader synthesizes this tag.
*/
public static final Tag COMMENT = new Tag("comment", SYNTETIC);
public static final Tag COMMENT = new Tag("comment", SYNTHETIC);
/**
* All text content is labeled with this tag.
* This tag is not included into the array, returned by getAllTags().
* toString() returns 'content'. HTML reader synthesizes this tag.
*/
public static final Tag CONTENT = new Tag("content", SYNTETIC);
public static final Tag CONTENT = new Tag("content", SYNTHETIC);
/**
* All text content must be in a paragraph element.
* If a paragraph didn't exist when content was encountered,
* a paragraph is manufactured.
* toString() returns 'implied'. HTML reader synthesizes this tag.
* toString() returns 'p-implied'. HTML reader synthesizes this tag.
*/
public static final Tag IMPLIED = new Tag("implied", SYNTETIC);
public static final Tag IMPLIED = new Tag("p-implied", SYNTHETIC);
final String name;
final int flags;
@ -1144,7 +1144,7 @@ public class HTML
*/
boolean isSyntetic()
{
return (flags & SYNTETIC) != 0;
return (flags & SYNTHETIC) != 0;
}
private static void unexpected(Exception ex)
@ -1185,7 +1185,7 @@ public class HTML
static final int BREAKS = 1;
static final int BLOCK = 2;
static final int PREFORMATTED = 4;
static final int SYNTETIC = 8;
static final int SYNTHETIC = 8;
private static Map tagMap;
private static Map attrMap;
@ -1196,6 +1196,7 @@ public class HTML
*/
public HTML()
{
// Nothing to do here.
}
/**