mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
6851834: Javadoc doclet needs a structured approach to generate the output HTML
Reviewed-by: jjg
This commit is contained in:
parent
6edf2ff9a3
commit
275e77646d
148 changed files with 12175 additions and 7441 deletions
|
@ -46,27 +46,34 @@ public class TestMultiInheritence extends JavadocTester {
|
|||
//Method foo() is inherited from BOTH I2 and I3
|
||||
private static final String[][] TEST = {
|
||||
{BUG_ID + FS + "pkg3" + FS + "I1.html",
|
||||
"Methods inherited from interface pkg3." + "<A HREF=\"../pkg3/I2.html\" title=\"interface in pkg3\">I2</A>"},
|
||||
"Methods inherited from interface pkg3." +
|
||||
"<a href=\"../pkg3/I2.html\" title=\"interface in pkg3\">" +
|
||||
"I2</a>"},
|
||||
{BUG_ID + FS + "pkg3" + FS +"I1.html",
|
||||
"Methods inherited from interface pkg3." +
|
||||
"<A HREF=\"../pkg3/I3.html\" title=\"interface in pkg3\">I3</A>"},
|
||||
"Methods inherited from interface pkg3." +
|
||||
"<a href=\"../pkg3/I3.html\" title=\"interface in pkg3\">" +
|
||||
"I3</a>"},
|
||||
{BUG_ID + FS + "pkg3" + FS + "I0.html",
|
||||
"Methods inherited from interface pkg3." +
|
||||
"<A HREF=\"../pkg3/I2.html\" title=\"interface in pkg3\">I2</A>"},
|
||||
"Methods inherited from interface pkg3." +
|
||||
"<a href=\"../pkg3/I2.html\" title=\"interface in pkg3\">" +
|
||||
"I2</a>"},
|
||||
{BUG_ID + FS + "pkg3" + FS +"I0.html",
|
||||
"Methods inherited from interface pkg3." +
|
||||
"<A HREF=\"../pkg3/I3.html\" title=\"interface in pkg3\">I3</A>"},
|
||||
"Methods inherited from interface pkg3." +
|
||||
"<a href=\"../pkg3/I3.html\" title=\"interface in pkg3\">" +
|
||||
"I3</a>"},
|
||||
};
|
||||
|
||||
//Method foo() is NOT inherited from I4 because it is overriden by
|
||||
//I3.
|
||||
private static final String[][] NEGATED_TEST = {
|
||||
{BUG_ID + FS + "pkg3" + FS + "I1.html",
|
||||
"Methods inherited from interface pkg3." +
|
||||
"<A HREF=\"../pkg3/I4.html\" title=\"interface in pkg3\">I4</A>"},
|
||||
"Methods inherited from interface pkg3." +
|
||||
"<a href=\"../pkg3/I4.html\" title=\"interface in pkg3\">" +
|
||||
"I4</a>"},
|
||||
{BUG_ID + FS + "pkg3" + FS + "I0.html",
|
||||
"Methods inherited from interface pkg3." +
|
||||
"<A HREF=\"../pkg3/I4.html\" title=\"interface in pkg3\">I4</A>"},
|
||||
"Methods inherited from interface pkg3." +
|
||||
"<a href=\"../pkg3/I4.html\" title=\"interface in pkg3\">" +
|
||||
"I4</a>"},
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue