test/com/sun/javadoc/testOverridenMethods/TestMultiInheritence.java

changeset 766
90af8d87741f
parent 554
9d9f26857129
child 798
4868a36f6fd8
     1.1 --- a/test/com/sun/javadoc/testOverridenMethods/TestMultiInheritence.java	Tue Nov 30 09:38:48 2010 -0800
     1.2 +++ b/test/com/sun/javadoc/testOverridenMethods/TestMultiInheritence.java	Wed Dec 01 11:02:38 2010 -0800
     1.3 @@ -46,27 +46,34 @@
     1.4      //Method foo() is inherited from BOTH I2 and I3
     1.5      private static final String[][] TEST = {
     1.6         {BUG_ID + FS + "pkg3" + FS + "I1.html",
     1.7 -        "Methods inherited from interface pkg3." +        "<A HREF=\"../pkg3/I2.html\" title=\"interface in pkg3\">I2</A>"},
     1.8 +        "Methods inherited from interface&nbsp;pkg3." +
     1.9 +                "<a href=\"../pkg3/I2.html\" title=\"interface in pkg3\">" +
    1.10 +                "I2</a>"},
    1.11          {BUG_ID + FS + "pkg3" + FS +"I1.html",
    1.12 -        "Methods inherited from interface pkg3." +
    1.13 -        "<A HREF=\"../pkg3/I3.html\" title=\"interface in pkg3\">I3</A>"},
    1.14 +        "Methods inherited from interface&nbsp;pkg3." +
    1.15 +                 "<a href=\"../pkg3/I3.html\" title=\"interface in pkg3\">" +
    1.16 +                 "I3</a>"},
    1.17          {BUG_ID + FS + "pkg3" + FS + "I0.html",
    1.18 -        "Methods inherited from interface pkg3." +
    1.19 -        "<A HREF=\"../pkg3/I2.html\" title=\"interface in pkg3\">I2</A>"},
    1.20 +        "Methods inherited from interface&nbsp;pkg3." +
    1.21 +                 "<a href=\"../pkg3/I2.html\" title=\"interface in pkg3\">" +
    1.22 +                 "I2</a>"},
    1.23          {BUG_ID + FS + "pkg3" + FS +"I0.html",
    1.24 -        "Methods inherited from interface pkg3." +
    1.25 -        "<A HREF=\"../pkg3/I3.html\" title=\"interface in pkg3\">I3</A>"},
    1.26 +        "Methods inherited from interface&nbsp;pkg3." +
    1.27 +                 "<a href=\"../pkg3/I3.html\" title=\"interface in pkg3\">" +
    1.28 +                 "I3</a>"},
    1.29      };
    1.30  
    1.31      //Method foo() is NOT inherited from I4 because it is overriden by
    1.32      //I3.
    1.33      private static final String[][] NEGATED_TEST = {
    1.34          {BUG_ID + FS + "pkg3" + FS + "I1.html",
    1.35 -        "Methods inherited from interface pkg3." +
    1.36 -        "<A HREF=\"../pkg3/I4.html\" title=\"interface in pkg3\">I4</A>"},
    1.37 +        "Methods inherited from interface&nbsp;pkg3." +
    1.38 +                 "<a href=\"../pkg3/I4.html\" title=\"interface in pkg3\">" +
    1.39 +                 "I4</a>"},
    1.40          {BUG_ID + FS + "pkg3" + FS + "I0.html",
    1.41 -        "Methods inherited from interface pkg3." +
    1.42 -        "<A HREF=\"../pkg3/I4.html\" title=\"interface in pkg3\">I4</A>"},
    1.43 +        "Methods inherited from interface&nbsp;pkg3." +
    1.44 +                 "<a href=\"../pkg3/I4.html\" title=\"interface in pkg3\">" +
    1.45 +                 "I4</a>"},
    1.46      };
    1.47  
    1.48      /**

mercurial