60 61 "implements <a href=\"ClassExtB.html\" title=\"" 62 + "annotation in typeannos\">@ClassExtB</a> java.lang.CharSequence, " 63 + "<a href=\"ClassExtA.html\" title=\"annotation in " 64 + "typeannos\">@ClassExtA</a> <a href=\"ParameterizedInterface.html\" " 65 + "title=\"interface in typeannos\">ParameterizedInterface</a><" 66 + "<a href=\"ClassExtB.html\" title=\"annotation in " 67 + "typeannos\">@ClassExtB</a> java.lang.String></pre>"); 68 69 checkOutput("typeannos/MyInterface.html", true, 70 "extends <a href=\"ClassExtA.html\" title=\"annotation " 71 + "in typeannos\">@ClassExtA</a> <a href=\"" 72 + "ParameterizedInterface.html\" title=\"interface in typeannos\">" 73 + "ParameterizedInterface</a><<a href=\"ClassExtA.html\" " 74 + "title=\"annotation in typeannos\">@ClassExtA</a> java.lang.String>, " 75 + "<a href=\"ClassExtB.html\" title=\"annotation in " 76 + "typeannos\">@ClassExtB</a> java.lang.CharSequence</pre>"); 77 78 // Test for type annotations on Class Parameters (ClassParameters.java). 79 checkOutput("typeannos/ExtendsBound.html", true, 80 "class <span class=\"typeNameLabel\">ExtendsBound<K extends <a " 81 + "href=\"ClassParamA.html\" title=\"annotation in " 82 + "typeannos\">@ClassParamA</a> java.lang.String></span>"); 83 84 checkOutput("typeannos/ExtendsGeneric.html", true, 85 "<pre>class <span class=\"typeNameLabel\">ExtendsGeneric<K extends " 86 + "<a href=\"ClassParamA.html\" title=\"annotation in " 87 + "typeannos\">@ClassParamA</a> <a href=\"Unannotated.html\" " 88 + "title=\"class in typeannos\">Unannotated</a><<a href=\"" 89 + "ClassParamB.html\" title=\"annotation in typeannos\">" 90 + "@ClassParamB</a> java.lang.String>></span>"); 91 92 checkOutput("typeannos/TwoBounds.html", true, 93 "<pre>class <span class=\"typeNameLabel\">TwoBounds<K extends <a href=\"" 94 + "ClassParamA.html\" title=\"annotation in typeannos\">" 95 + "@ClassParamA</a> java.lang.String,V extends <a href=\"" 96 + "ClassParamB.html\" title=\"annotation in typeannos\">@ClassParamB" 97 + "</a> java.lang.String></span>"); 98 99 checkOutput("typeannos/Complex1.html", true, 100 "class <span class=\"typeNameLabel\">Complex1<K extends <a href=\"" 101 + "ClassParamA.html\" title=\"annotation in typeannos\">" 102 + "@ClassParamA</a> java.lang.String & java.lang.Runnable></span>"); 103 104 checkOutput("typeannos/Complex2.html", true, 105 "class <span class=\"typeNameLabel\">Complex2<K extends java.lang." 106 + "String & <a href=\"ClassParamB.html\" title=\"" 107 + "annotation in typeannos\">@ClassParamB</a> java.lang.Runnable></span>"); 108 109 checkOutput("typeannos/ComplexBoth.html", true, 110 "class <span class=\"typeNameLabel\">ComplexBoth<K extends <a href=\"" 111 + "ClassParamA.html\" title=\"annotation in typeannos\"" 112 + ">@ClassParamA</a> java.lang.String & <a href=\"" 113 + "ClassParamA.html\" title=\"annotation in typeannos\">@ClassParamA" 114 + "</a> java.lang.Runnable></span>"); 115 116 // Test for type annotations on fields (Fields.java). 117 checkOutput("typeannos/DefaultScope.html", true, 118 "<pre><a href=\"Parameterized.html\" title=\"class in " 119 + "typeannos\">Parameterized</a><<a href=\"FldA.html\" " 120 + "title=\"annotation in typeannos\">@FldA</a> java.lang.String,<a " 121 + "href=\"FldB.html\" title=\"annotation in typeannos\">" 122 + "@FldB</a> java.lang.String> bothTypeArgs</pre>", 123 124 "<pre><a href=\"FldA.html\" title=\"annotation in " 125 + "typeannos\">@FldA</a> java.lang.String <a href=\"" 126 + "FldB.html\" title=\"annotation in typeannos\">@FldB</a> [] " 127 + "array1Deep</pre>", 128 129 "<pre>java.lang.String <a href=\"FldB.html\" " 130 + "title=\"annotation in typeannos\">@FldB</a> [][] array2SecondOld</pre>", 131 132 // When JDK-8068737, we should change the order 133 "<pre><a href=\"FldD.html\" title=\"annotation in typeannos\">" 134 + "@FldD</a> java.lang.String " 135 + "<a href=\"FldC.html\" title=\"annotation in typeannos\">@FldC</a> " 136 + "<a href=\"FldB.html\" title=\"annotation in typeannos\">@FldB</a> [] " 137 + "<a href=\"FldC.html\" title=\"annotation in typeannos\">@FldC</a> " 138 + "<a href=\"FldA.html\" title=\"annotation in typeannos\">@FldA</a> [] " 139 + "array2Deep</pre>"); 140 141 checkOutput("typeannos/ModifiedScoped.html", true, 142 "<pre>public final <a href=\"Parameterized.html\" " 143 + "title=\"class in typeannos\">Parameterized</a><<a href=\"" 144 + "FldA.html\" title=\"annotation in typeannos\">@FldA</a> " 145 + "<a href=\"Parameterized.html\" title=\"class in " 146 + "typeannos\">Parameterized</a><<a href=\"FldA.html\" " 147 + "title=\"annotation in typeannos\">@FldA</a> java.lang.String,<a " 148 + "href=\"FldB.html\" title=\"annotation in typeannos\">" 149 + "@FldB</a> java.lang.String>,<a href=\"FldB.html\" " 150 + "title=\"annotation in typeannos\">@FldB</a> java.lang.String> " 151 + "nestedParameterized</pre>", 152 153 "<pre>public final <a href=\"FldA.html\" " 154 + "title=\"annotation in typeannos\">@FldA</a> java.lang.String[][] " 155 + "array2</pre>"); 156 157 // Test for type annotations on method return types (MethodReturnType.java). 158 checkOutput("typeannos/MtdDefaultScope.html", true, 159 "<pre class=\"methodSignature\">public <T> <a href=\"MRtnA.html\" " 160 + "title=\"annotation in typeannos\">@MRtnA</a> java.lang.String" 161 + " method()</pre>", 162 163 // When JDK-8068737 is fixed, we should change the order 164 "<pre class=\"methodSignature\"><a href=\"MRtnA.html\" title=\"annotation in typeannos\">" 165 + "@MRtnA</a> java.lang.String " 166 + "<a href=\"MRtnB.html\" title=\"annotation in typeannos\">@MRtnB</a> [] " 167 + "<a href=\"MRtnA.html\" title=\"annotation in typeannos\">@MRtnA</a> []" 168 + " array2Deep()</pre>", 169 170 "<pre class=\"methodSignature\"><a href=\"MRtnA.html\" title=\"annotation in " 171 + "typeannos\">@MRtnA</a> java.lang.String[][] array2()</pre>"); 172 173 checkOutput("typeannos/MtdModifiedScoped.html", true, 174 "<pre class=\"methodSignature\">public final <a href=\"MtdParameterized.html\" " 175 + "title=\"class in typeannos\">MtdParameterized</a><<a href=\"" 176 + "MRtnA.html\" title=\"annotation in typeannos\">@MRtnA</a> " 177 + "<a href=\"MtdParameterized.html\" title=\"class in " 178 + "typeannos\">MtdParameterized</a><<a href=\"MRtnA." 179 + "html\" title=\"annotation in typeannos\">@MRtnA</a> java.lang." 180 + "String,<a href=\"MRtnB.html\" title=\"annotation in " 181 + "typeannos\">@MRtnB</a> java.lang.String>,<a href=\"" 182 + "MRtnB.html\" title=\"annotation in typeannos\">@MRtnB</a> java." 183 + "lang.String> nestedMtdParameterized()</pre>"); 184 185 // Test for type annotations on method type parameters (MethodTypeParameters.java). 186 checkOutput("typeannos/UnscopedUnmodified.html", true, 187 "<pre class=\"methodSignature\"><K extends <a href=\"MTyParamA.html\" title=\"" 188 + "annotation in typeannos\">@MTyParamA</a> java.lang.String>" 189 + " void methodExtends()</pre>", 190 191 "<pre class=\"methodSignature\"><K extends <a href=\"MTyParamA.html\" title=\"" 192 + "annotation in typeannos\">@MTyParamA</a> <a href=\"" 193 + "MtdTyParameterized.html\" title=\"class in typeannos\">" 194 + "MtdTyParameterized</a><<a href=\"MTyParamB.html\" " 195 + "title=\"annotation in typeannos\">@MTyParamB</a> java.lang.String" 196 + ">> void nestedExtends()</pre>"); 197 198 checkOutput("typeannos/PublicModifiedMethods.html", true, 199 "<pre class=\"methodSignature\">public final <K extends <a href=\"" 200 + "MTyParamA.html\" title=\"annotation in typeannos\">@MTyParamA</a> " 201 + "java.lang.String> void methodExtends()</pre>", 202 203 "<pre class=\"methodSignature\">public final <K extends <a href=\"" 204 + "MTyParamA.html\" title=\"annotation in typeannos\">@MTyParamA</a> " 205 + "java.lang.String,V extends <a href=\"MTyParamA.html\" " 206 + "title=\"annotation in typeannos\">@MTyParamA</a> <a href=\"" 207 + "MtdTyParameterized.html\" title=\"class in typeannos\">" 208 + "MtdTyParameterized</a><<a href=\"MTyParamB.html\" " 209 + "title=\"annotation in typeannos\">@MTyParamB</a> java.lang.String" 210 + ">> void dual()</pre>"); 211 212 // Test for type annotations on parameters (Parameters.java). 213 checkOutput("typeannos/Parameters.html", true, 214 "<pre class=\"methodSignature\">void unannotated(<a href=\"" 215 + "ParaParameterized.html\" title=\"class in typeannos\">" 216 + "ParaParameterized</a><java.lang.String,java.lang.String>" 217 + " a)</pre>", 218 219 "<pre class=\"methodSignature\">void nestedParaParameterized(<a href=\"" 220 + "ParaParameterized.html\" title=\"class in typeannos\">" 221 + "ParaParameterized</a><<a href=\"ParamA.html\" " 222 + "title=\"annotation in typeannos\">@ParamA</a> <a href=\"" 223 + "ParaParameterized.html\" title=\"class in typeannos\">" 224 + "ParaParameterized</a><<a href=\"ParamA.html\" " 225 + "title=\"annotation in typeannos\">@ParamA</a> java.lang.String," 226 + "<a href=\"ParamB.html\" title=\"annotation in " 227 + "typeannos\">@ParamB</a> java.lang.String>,<a href=\"" 228 + "ParamB.html\" title=\"annotation in typeannos\">@ParamB" 229 + "</a> java.lang.String> a)</pre>", 230 231 // When JDK-8068737 is fixed, we should change the order 232 "<pre class=\"methodSignature\">void array2Deep(<a href=\"ParamA.html\" " 233 + "title=\"annotation in typeannos\">@ParamA</a> java.lang.String " 234 + "<a href=\"ParamB.html\" title=\"annotation in typeannos\">" 235 + "@ParamB</a> [] " 236 + "<a href=\"ParamA.html\" title=\"annotation in typeannos\">" 237 + "@ParamA</a> []" 238 + " a)</pre>"); 239 240 // Test for type annotations on throws (Throws.java). 241 checkOutput("typeannos/ThrDefaultUnmodified.html", true, 242 "<pre class=\"methodSignature\">void oneException()\n" 243 + " throws <a href=\"ThrA.html\" title=\"" 244 + "annotation in typeannos\">@ThrA</a> java.lang.Exception</pre>", 245 246 "<pre class=\"methodSignature\">void twoExceptions()\n" 247 + " throws <a href=\"ThrA.html\" title=\"" 248 + "annotation in typeannos\">@ThrA</a> java.lang.RuntimeException,\n" 249 + " <a href=\"ThrA.html\" title=\"" 250 + "annotation in typeannos\">@ThrA</a> java.lang.Exception</pre>"); 251 252 checkOutput("typeannos/ThrPublicModified.html", true, 253 "<pre class=\"methodSignature\">public final void oneException" 254 + "(java.lang.String a)\n throws <a href=\"ThrA.html\" " 255 + "title=\"annotation in typeannos\">@ThrA</a> java.lang.Exception</pre>", 256 257 "<pre class=\"methodSignature\">public final void twoExceptions" 258 + "(java.lang.String a)\n throws <a href=\"ThrA.html\" " 259 + "title=\"annotation in typeannos\">@ThrA</a> java.lang.RuntimeException,\n" 260 + " <a href=\"ThrA.html\" " 261 + "title=\"annotation in typeannos\">@ThrA</a> java.lang.Exception</pre>"); 262 263 checkOutput("typeannos/ThrWithValue.html", true, 264 "<pre class=\"methodSignature\">void oneException()\n" 265 + " throws <a href=\"ThrB.html\" title=\"" 266 + "annotation in typeannos\">@ThrB</a>(" 267 + "\"m\") java.lang.Exception</pre>", 268 269 "<pre class=\"methodSignature\">void twoExceptions()\n" 270 + " throws <a href=\"ThrB.html\" title=\"" 271 + "annotation in typeannos\">@ThrB</a>(" 272 + "\"m\") java.lang.RuntimeException,\n" 273 + " <a href=\"ThrA.html\" title=\"" 274 + "annotation in typeannos\">@ThrA</a> java.lang.Exception</pre>"); 275 276 // Test for type annotations on type parameters (TypeParameters.java). 277 checkOutput("typeannos/TestMethods.html", true, 278 "<pre class=\"methodSignature\"><K,<a href=\"TyParaA.html\" title=" 279 + "\"annotation in typeannos\">@TyParaA</a> V extends <a href=\"TyParaA.html\" " 280 + "title=\"annotation in typeannos\">@TyParaA</a> " 281 + "java.lang.String> void secondAnnotated()</pre>" 282 ); 283 284 // Test for type annotations on wildcard type (Wildcards.java). 285 checkOutput("typeannos/BoundTest.html", true, 286 "<pre class=\"methodSignature\">void wcExtends(<a href=\"MyList.html\" " 287 + "title=\"class in typeannos\">MyList</a><? extends <a href=\"" 288 + "WldA.html\" title=\"annotation in typeannos\">@WldA" 289 + "</a> java.lang.String> l)</pre>", 290 291 "<pre class=\"methodSignature\"><a href=\"MyList.html\" title=\"class in " 292 + "typeannos\">MyList</a><? super <a href=\"WldA.html\" " 293 + "title=\"annotation in typeannos\">@WldA</a> java.lang.String>" 294 + " returnWcSuper()</pre>"); 295 296 checkOutput("typeannos/BoundWithValue.html", true, 297 "<pre class=\"methodSignature\">void wcSuper(<a href=\"MyList.html\"" 298 + " title=\"class in typeannos\">MyList</a><? super <a href=\"" 299 + "WldB.html\" title=\"annotation in typeannos\">@WldB</a>(" 300 + "\"m\") java.lang." 301 + "String> l)</pre>", 302 303 "<pre class=\"methodSignature\"><a href=\"MyList.html\" title=\"class in " 304 + "typeannos\">MyList</a><? extends <a href=\"WldB." 305 + "html\" title=\"annotation in typeannos\">@WldB</a>(" 306 + "\"m\") java.lang.String" 307 + "> returnWcExtends()</pre>"); 308 309 // Test for receiver annotations (Receivers.java). 310 checkOutput("typeannos/DefaultUnmodified.html", true, 311 "<pre class=\"methodSignature\">void withException(<a href=\"RcvrA.html\" " 312 + "title=\"annotation in typeannos\">@RcvrA</a> " 313 + "DefaultUnmodified this)\n" 314 + " throws java." 315 + "lang.Exception</pre>", 316 317 "<pre class=\"methodSignature\">java.lang.String nonVoid(<a href=\"RcvrA." 318 + "html\" title=\"annotation in typeannos\">@RcvrA</a> <a href=\"" 319 + "RcvrB.html\" title=\"annotation in typeannos\">@RcvrB" 320 + "</a>(\"m\")" 321 + " DefaultUnmodified this)</pre>", 322 323 "<pre class=\"methodSignature\"><T extends java.lang.Runnable> void accept(" 324 + "<a href=\"RcvrA.html\" title=\"annotation in " 325 + "typeannos\">@RcvrA</a> DefaultUnmodified this,\n" 326 + " T r)\n" 327 + " throws java.lang.Exception</pre>"); 328 329 checkOutput("typeannos/PublicModified.html", true, 330 "<pre class=\"methodSignature\">public final java.lang.String nonVoid" 331 + "(<a href=\"RcvrA.html\" title=\"annotation in typeannos\">" 332 + "@RcvrA</a> PublicModified this)</pre>", 333 334 "<pre class=\"methodSignature\">public final <T extends java.lang.Runnable> " 335 + "void accept(<a href=\"RcvrA.html\" title=\"" 336 + "annotation in typeannos\">@RcvrA</a> PublicModified this,\n" 337 + " T r)\n" 338 + " throws java.lang.Exception</pre>"); 339 340 checkOutput("typeannos/WithValue.html", true, 341 "<pre class=\"methodSignature\"><T extends java.lang.Runnable> void accept(" 342 + "<a href=\"RcvrB.html\" title=\"annotation in " 343 + "typeannos\">@RcvrB</a>(" 344 + "\"m\") WithValue this,\n" 345 + " T r)\n" 346 + " throws java.lang.Exception</pre>"); 347 348 checkOutput("typeannos/WithFinal.html", true, 349 "<pre class=\"methodSignature\">java.lang.String nonVoid(<a href=\"RcvrB.html\" " 350 + "title=\"annotation in typeannos\">@RcvrB</a>(\"m\") " 351 + "<a href=\"WithFinal.html\" title=\"class in typeannos\">" 352 + "WithFinal</a> afield)</pre>"); 353 354 checkOutput("typeannos/WithBody.html", true, 355 "<pre class=\"methodSignature\">void field(<a href=\"RcvrA.html\" title=\"" 356 + "annotation in typeannos\">@RcvrA</a> WithBody this)</pre>"); 357 358 checkOutput("typeannos/Generic2.html", true, 359 "<pre class=\"methodSignature\">void test2(<a href=\"RcvrA.html\" title=\"" 360 + "annotation in typeannos\">@RcvrA</a> Generic2<X> this)</pre>"); 361 362 363 // Test for repeated type annotations (RepeatedAnnotations.java). 364 checkOutput("typeannos/RepeatingAtClassLevel.html", true, 365 "<pre><a href=\"RepTypeA.html\" title=\"annotation in " 366 + "typeannos\">@RepTypeA</a> <a href=\"RepTypeA.html\" " 367 + "title=\"annotation in typeannos\">@RepTypeA</a>\n<a href=" 368 + "\"RepTypeB.html\" title=\"annotation in typeannos\">" 369 + "@RepTypeB</a> <a href=\"RepTypeB.html\" title=" 370 + "\"annotation in typeannos\">@RepTypeB</a>\nclass <span class=" 371 + "\"typeNameLabel\">RepeatingAtClassLevel</span>\nextends " 372 + "java.lang.Object</pre>"); 373 374 // @ignore 8146008 375 // checkOutput("typeannos/RepeatingAtClassLevel2.html", true, 376 // "<pre><a href=\"RepTypeUseA.html\" title=\"annotation " 377 // + "in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseA.html" 378 // + "\" title=\"annotation in typeannos\">@RepTypeUseA</a>\n<a href=" 379 // + "\"RepTypeUseB.html\" title=\"annotation in typeannos" 380 // + "\">@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" " 381 // + "title=\"annotation in typeannos\">@RepTypeUseB</a>\nclass <span " 382 // + "class=\"typeNameLabel\">RepeatingAtClassLevel2</span>\nextends " 383 // + "java.lang.Object</pre>"); 384 // 385 // checkOutput("typeannos/RepeatingAtClassLevel2.html", true, 386 // "<pre><a href=\"RepAllContextsA.html\" title=\"annotation" 387 // + " in typeannos\">@RepAllContextsA</a> <a href=\"RepAllContextsA.html" 388 // + "\" title=\"annotation in typeannos\">@RepAllContextsA</a>\n<a href=" 389 // + "\"RepAllContextsB.html\" title=\"annotation in typeannos" 390 // + "\">@RepAllContextsB</a> <a href=\"RepAllContextsB.html" 391 // + "\" title=\"annotation in typeannos\">@RepAllContextsB</a>\n" 392 // + "class <span class=\"typeNameLabel\">RepeatingAtClassLevel3</span>\n" 393 // + "extends java.lang.Object</pre>"); 394 395 checkOutput("typeannos/RepeatingOnConstructor.html", true, 396 "<pre><a href=\"RepConstructorA.html\" title=\"annotation " 397 + "in typeannos\">@RepConstructorA</a> <a href=\"RepConstructorA.html" 398 + "\" title=\"annotation in typeannos\">@RepConstructorA</a>\n<a href=" 399 + "\"RepConstructorB.html\" title=\"annotation in typeannos" 400 + "\">@RepConstructorB</a> <a href=\"RepConstructorB.html" 401 + "\" title=\"annotation in typeannos\">@RepConstructorB</a>\n" 402 + "RepeatingOnConstructor()</pre>", 403 404 "<pre><a href=\"RepConstructorA.html\" title=\"annotation in typeannos" 405 + "\">@RepConstructorA</a> <a href=\"RepConstructorA.html" 406 + "\" title=\"annotation in typeannos\">@RepConstructorA</a>\n<a href=" 407 + "\"RepConstructorB.html\" title=\"annotation in typeannos" 408 + "\">@RepConstructorB</a> <a href=\"RepConstructorB.html" 409 + "\" title=\"annotation in typeannos\">@RepConstructorB</a>\n" 410 + "RepeatingOnConstructor(int i,\n int j)</pre>", 411 412 "<pre><a href=\"RepAllContextsA.html\" title=\"annotation in typeannos" 413 + "\">@RepAllContextsA</a> <a href=\"RepAllContextsA.html" 414 + "\" title=\"annotation in typeannos\">@RepAllContextsA</a>\n" 415 + "<a href=\"RepAllContextsB.html\" title=\"annotation in typeannos" 416 + "\">@RepAllContextsB</a> <a href=\"RepAllContextsB.html" 417 + "\" title=\"annotation in typeannos\">@RepAllContextsB</a>\n" 418 + "RepeatingOnConstructor(int i,\n int j,\n" 419 + " int k)</pre>", 420 421 "<pre>RepeatingOnConstructor(<a href=\"RepParameterA.html" 422 + "\" title=\"annotation in typeannos\">@RepParameterA</a> <a href=" 423 + "\"RepParameterA.html\" title=\"annotation in typeannos" 424 + "\">@RepParameterA</a> <a href=\"RepParameterB.html" 425 + "\" title=\"annotation in typeannos\">@RepParameterB</a> " 426 + "<a href=\"RepParameterB.html\" title=\"annotation in typeannos" 427 + "\">@RepParameterB</a>\n java.lang.String parameter,\n" 428 + " <a href=\"RepParameterA.html\" " 429 + "title=\"annotation in typeannos\">@RepParameterA</a> <a href=" 430 + "\"RepParameterA.html\" title=\"annotation in typeannos\">" 431 + "@RepParameterA</a> <a href=\"RepParameterB.html\" " 432 + "title=\"annotation in typeannos\">@RepParameterB</a> <a href=" 433 + "\"RepParameterB.html\" title=\"annotation in typeannos\">" 434 + "@RepParameterB</a>\n java.lang.String " 435 + "<a href=\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 436 + "@RepTypeUseA</a> <a href=\"RepTypeUseA.html\" " 437 + "title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=" 438 + "\"RepTypeUseB.html\" title=\"annotation in typeannos\">@RepTypeUseB</a> " 439 + "<a href=\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 440 + "@RepTypeUseB</a> ... vararg)</pre>" 441 ); 442 443 checkOutput("typeannos/RepeatingOnConstructor.Inner.html", true, 444 "<code><span class=\"memberNameLink\"><a href=\"#%3Cinit%3E(java.lang.String," 445 + "java.lang.String...)\">Inner</a></span>(java.lang.String parameter,\n" 446 + " java.lang.String <a href=\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 447 + "@RepTypeUseA</a> <a href=\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 448 + "@RepTypeUseA</a> <a href=\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 449 + "@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 450 + "@RepTypeUseB</a> ... vararg)</code>", 451 "Inner(<a href=\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 452 + "@RepTypeUseA</a> <a href=\"RepTypeUseA.html\" title=" 453 + "\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseB.html" 454 + "\" title=\"annotation in typeannos\">@RepTypeUseB</a> <a href=" 455 + "\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 456 + "@RepTypeUseB</a> RepeatingOnConstructor this,\n <a href=" 457 + "\"RepParameterA.html\" title=\"annotation in typeannos\">" 458 + "@RepParameterA</a> <a href=\"RepParameterA.html\" title=" 459 + "\"annotation in typeannos\">@RepParameterA</a> <a href=\"RepParameterB.html" 460 + "\" title=\"annotation in typeannos\">@RepParameterB</a> <a href=" 461 + "\"RepParameterB.html\" title=\"annotation in typeannos\">" 462 + "@RepParameterB</a>\n java.lang.String parameter,\n" 463 + " <a href=\"RepParameterA.html\" title=\"annotation in typeannos\">" 464 + "@RepParameterA</a> <a href=\"RepParameterA.html\" title=" 465 + "\"annotation in typeannos\">@RepParameterA</a> <a href=\"RepParameterB.html" 466 + "\" title=\"annotation in typeannos\">@RepParameterB</a> <a href=" 467 + "\"RepParameterB.html\" title=\"annotation in typeannos\">" 468 + "@RepParameterB</a>\n java.lang.String <a href=\"RepTypeUseA.html" 469 + "\" title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=" 470 + "\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 471 + "@RepTypeUseA</a> <a href=\"RepTypeUseB.html\" title=" 472 + "\"annotation in typeannos\">@RepTypeUseB</a> <a href=\"RepTypeUseB.html" 473 + "\" title=\"annotation in typeannos\">@RepTypeUseB</a> ... vararg)"); 474 475 checkOutput("typeannos/RepeatingOnField.html", true, 476 "<code>(package private) java.lang.Integer</code></td>\n<th class=\"colSecond\" scope=\"row\">" 477 + "<code><span class=\"memberNameLink\"><a href=\"#i1" 478 + "\">i1</a></span></code>", 479 480 "<code>(package private) <a href=\"RepTypeUseA.html\" " 481 + "title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"" 482 + "RepTypeUseA.html\" title=\"annotation in typeannos\">" 483 + "@RepTypeUseA</a> <a href=\"RepTypeUseB.html\" title=" 484 + "\"annotation in typeannos\">@RepTypeUseB</a> <a href=\"RepTypeUseB.html" 485 + "\" title=\"annotation in typeannos\">@RepTypeUseB</a> java.lang.Integer</code></td>\n" 486 + "<th class=\"colSecond\" scope=\"row\"><code><span class=\"memberNameLink\"><a href=" 487 + "\"#i2\">i2</a></span></code>", 488 489 "<code>(package private) <a href=\"RepTypeUseA.html\" title=" 490 + "\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseA.html\" " 491 + "title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=" 492 + "\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 493 + "@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" title=" 494 + "\"annotation in typeannos\">@RepTypeUseB</a> java.lang.Integer</code>" 495 + "</td>\n<th class=\"colSecond\" scope=\"row\"><code><span class=\"memberNameLink\">" 496 + "<a href=\"#i3\">i3</a></span></code>", 497 498 "<code>(package private) <a href=\"RepAllContextsA.html\" title=\"" 499 + "annotation in typeannos\">@RepAllContextsA</a> <a href=\"RepAllContextsA.html" 500 + "\" title=\"annotation in typeannos\">@RepAllContextsA</a> <a href=" 501 + "\"RepAllContextsB.html\" title=\"annotation in typeannos\">" 502 + "@RepAllContextsB</a> <a href=\"RepAllContextsB.html\" title=" 503 + "\"annotation in typeannos\">@RepAllContextsB</a> java.lang.Integer</code>" 504 + "</td>\n<th class=\"colSecond\" scope=\"row\"><code><span class=\"memberNameLink\">" 505 + "<a href=\"#i4\">i4</a></span></code>", 506 507 "<code>(package private) java.lang.String <a href=\"RepTypeUseA.html" 508 + "\" title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=" 509 + "\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 510 + "@RepTypeUseA</a> <a href=\"RepTypeUseB.html\" title=" 511 + "\"annotation in typeannos\">@RepTypeUseB</a> <a href=\"RepTypeUseB.html" 512 + "\" title=\"annotation in typeannos\">@RepTypeUseB</a> [] <a href=" 513 + "\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 514 + "@RepTypeUseA</a> <a href=\"RepTypeUseA.html\" title=" 515 + "\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseB.html" 516 + "\" title=\"annotation in typeannos\">@RepTypeUseB</a> <a href=" 517 + "\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 518 + "@RepTypeUseB</a> []</code></td>\n<th class=\"colSecond\" scope=\"row\"><code><span class=" 519 + "\"memberNameLink\"><a href=\"#sa" 520 + "\">sa</a></span></code>", 521 522 "<pre><a href=\"RepFieldA.html\" title=\"annotation in typeannos\">" 523 + "@RepFieldA</a> <a href=\"RepFieldA.html\" title=" 524 + "\"annotation in typeannos\">@RepFieldA</a>\n<a href=\"RepFieldB.html" 525 + "\" title=\"annotation in typeannos\">@RepFieldB</a> <a href=" 526 + "\"RepFieldB.html\" title=\"annotation in typeannos\">" 527 + "@RepFieldB</a>\njava.lang.Integer i1</pre>", 528 529 "<pre><a href=\"RepTypeUseA.html\" title=\"annotation in typeannos" 530 + "\">@RepTypeUseA</a> <a href=\"RepTypeUseA.html" 531 + "\" title=\"annotation in typeannos\">@RepTypeUseA</a> " 532 + "<a href=\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 533 + "@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" title=" 534 + "\"annotation in typeannos\">@RepTypeUseB</a> java.lang.Integer i2</pre>", 535 536 "<pre><a href=\"RepFieldA.html\" title=\"annotation in typeannos\">" 537 + "@RepFieldA</a> <a href=\"RepFieldA.html\" title=" 538 + "\"annotation in typeannos\">@RepFieldA</a>\n<a href=\"RepFieldB.html" 539 + "\" title=\"annotation in typeannos\">@RepFieldB</a> <a href=" 540 + "\"RepFieldB.html\" title=\"annotation in typeannos\">" 541 + "@RepFieldB</a>\n<a href=\"RepTypeUseA.html\" title=" 542 + "\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseA.html" 543 + "\" title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=" 544 + "\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 545 + "@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" title=" 546 + "\"annotation in typeannos\">@RepTypeUseB</a> java.lang.Integer i3</pre>", 547 548 "<pre><a href=\"RepAllContextsA.html\" title=\"annotation in typeannos\">" 549 + "@RepAllContextsA</a> <a href=\"RepAllContextsA.html" 550 + "\" title=\"annotation in typeannos\">@RepAllContextsA</a>\n<a href=" 551 + "\"RepAllContextsB.html\" title=\"annotation in typeannos\">" 552 + "@RepAllContextsB</a> <a href=\"RepAllContextsB.html" 553 + "\" title=\"annotation in typeannos\">@RepAllContextsB</a>\n" 554 + "<a href=\"RepAllContextsA.html\" title=\"annotation in typeannos\">" 555 + "@RepAllContextsA</a> <a href=\"RepAllContextsA.html\" " 556 + "title=\"annotation in typeannos\">@RepAllContextsA</a> <a href=" 557 + "\"RepAllContextsB.html\" title=\"annotation in typeannos\">" 558 + "@RepAllContextsB</a> <a href=\"RepAllContextsB.html" 559 + "\" title=\"annotation in typeannos\">@RepAllContextsB</a> java.lang.Integer i4</pre>", 560 561 "<pre>java.lang.String <a href=\"RepTypeUseA.html\" title=" 562 + "\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseA.html" 563 + "\" title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=" 564 + "\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 565 + "@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" title=" 566 + "\"annotation in typeannos\">@RepTypeUseB</a> [] <a href=" 567 + "\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 568 + "@RepTypeUseA</a> <a href=\"RepTypeUseA.html\" title=" 569 + "\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseB.html\" " 570 + "title=\"annotation in typeannos\">@RepTypeUseB</a> <a href=" 571 + "\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 572 + "@RepTypeUseB</a> [] sa</pre>"); 573 574 checkOutput("typeannos/RepeatingOnMethod.html", true, 575 "<code>(package private) java.lang.String</code></td>\n<th class=\"colSecond\" scope=\"row\">" 576 + "<code><span class=\"memberNameLink\"><a href=" 577 + "\"#test1()\">test1</a></span>()</code>", 578 579 "<code>(package private) <a href=\"RepTypeUseA.html\" " 580 + "title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=" 581 + "\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 582 + "@RepTypeUseA</a> <a href=\"RepTypeUseB.html\" title=" 583 + "\"annotation in typeannos\">@RepTypeUseB</a> <a href=\"RepTypeUseB.html" 584 + "\" title=\"annotation in typeannos\">@RepTypeUseB</a> java.lang.String</code>" 585 + "</td>\n<th class=\"colSecond\" scope=\"row\"><code><span class=\"memberNameLink\">" 586 + "<a href=\"#test2()\">test2</a>" 587 + "</span>()</code>", 588 589 "<code>(package private) <a href=\"RepTypeUseA.html\" " 590 + "title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=" 591 + "\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 592 + "@RepTypeUseA</a> <a href=\"RepTypeUseB.html\" title=" 593 + "\"annotation in typeannos\">@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" " 594 + "title=\"annotation in typeannos\">@RepTypeUseB</a> java.lang.String</code>" 595 + "</td>\n<th class=\"colSecond\" scope=\"row\"><code><span class=\"memberNameLink\">" 596 + "<a href=\"#test3()\">test3</a>" 597 + "</span>()</code>", 598 599 "<code>(package private) <a href=\"RepAllContextsA.html\" " 600 + "title=\"annotation in typeannos\">@RepAllContextsA</a> <a href=" 601 + "\"RepAllContextsA.html\" title=\"annotation in typeannos\">" 602 + "@RepAllContextsA</a> <a href=\"RepAllContextsB.html\" " 603 + "title=\"annotation in typeannos\">@RepAllContextsB</a> <a href=" 604 + "\"RepAllContextsB.html\" title=\"annotation in typeannos\">" 605 + "@RepAllContextsB</a> java.lang.String</code></td>\n<th class=\"colSecond\" scope=\"row\">" 606 + "<code><span class=\"memberNameLink\"><a href=\"" 607 + "#test4()\">test4</a></span>()</code>", 608 609 "<code><span class=\"memberNameLink\"><a href=\"" 610 + "#test5(java.lang.String,java.lang.String...)\">test5</a></span>" 611 + "(java.lang.String parameter,\n java.lang.String <a href=" 612 + "\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 613 + "@RepTypeUseA</a> <a href=\"RepTypeUseA.html\" title=" 614 + "\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseB.html" 615 + "\" title=\"annotation in typeannos\">@RepTypeUseB</a> <a href=" 616 + "\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 617 + "@RepTypeUseB</a> ... vararg)</code>", 618 619 "<a href=\"RepMethodA.html\" title=\"annotation in typeannos\">" 620 + "@RepMethodA</a> <a href=\"RepMethodA.html\" title=" 621 + "\"annotation in typeannos\">@RepMethodA</a>\n<a href=\"RepMethodB.html\"" 622 + " title=\"annotation in typeannos\">@RepMethodB</a> <a href=" 623 + "\"RepMethodB.html\" title=\"annotation in typeannos\">" 624 + "@RepMethodB</a>\njava.lang.String test1()", 625 626 "<a href=\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 627 + "@RepTypeUseA</a> <a href=\"RepTypeUseA.html\" title=" 628 + "\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseB.html\" " 629 + "title=\"annotation in typeannos\">@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" " 630 + "title=\"annotation in typeannos\">@RepTypeUseB</a> java.lang.String test2()", 631 632 "<a href=\"RepMethodA.html\" title=\"annotation in typeannos\">" 633 + "@RepMethodA</a> <a href=\"RepMethodA.html\" title=" 634 + "\"annotation in typeannos\">@RepMethodA</a>\n<a href=\"RepMethodB.html\" " 635 + "title=\"annotation in typeannos\">@RepMethodB</a> <a href=" 636 + "\"RepMethodB.html\" title=\"annotation in typeannos\">" 637 + "@RepMethodB</a>\n<a href=\"RepTypeUseA.html\" title=" 638 + "\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseA.html\" " 639 + "title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=" 640 + "\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 641 + "@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" title=" 642 + "\"annotation in typeannos\">@RepTypeUseB</a> java.lang.String test3()", 643 644 "<a href=\"RepAllContextsA.html\" title=\"annotation in typeannos\">" 645 + "@RepAllContextsA</a> <a href=\"RepAllContextsA.html\" " 646 + "title=\"annotation in typeannos\">@RepAllContextsA</a>\n<a href=" 647 + "\"RepAllContextsB.html\" title=\"annotation in typeannos\">" 648 + "@RepAllContextsB</a> <a href=\"RepAllContextsB.html\" " 649 + "title=\"annotation in typeannos\">@RepAllContextsB</a>\n<a href=" 650 + "\"RepAllContextsA.html\" title=\"annotation in typeannos\">" 651 + "@RepAllContextsA</a> <a href=\"RepAllContextsA.html\" " 652 + "title=\"annotation in typeannos\">@RepAllContextsA</a> <a href=" 653 + "\"RepAllContextsB.html\" title=\"annotation in typeannos\">" 654 + "@RepAllContextsB</a> <a href=\"RepAllContextsB.html\" " 655 + "title=\"annotation in typeannos\">@RepAllContextsB</a> java.lang.String test4()", 656 657 "java.lang.String test5(<a href=\"RepTypeUseA.html\" " 658 + "title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=" 659 + "\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 660 + "@RepTypeUseA</a> <a href=\"RepTypeUseB.html\" title=" 661 + "\"annotation in typeannos\">@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" " 662 + "title=\"annotation in typeannos\">@RepTypeUseB</a> RepeatingOnMethod " 663 + "this,\n <a href=\"RepParameterA.html\" " 664 + "title=\"annotation in typeannos\">@RepParameterA</a> <a href=" 665 + "\"RepParameterA.html\" title=\"annotation in typeannos\">" 666 + "@RepParameterA</a> <a href=\"RepParameterB.html\" " 667 + "title=\"annotation in typeannos\">@RepParameterB</a> <a href=" 668 + "\"RepParameterB.html\" title=\"annotation in typeannos\">" 669 + "@RepParameterB</a>\n java.lang.String parameter,\n" 670 + " <a href=\"RepParameterA.html\" title=" 671 + "\"annotation in typeannos\">@RepParameterA</a> <a href=\"RepParameterA.html\"" 672 + " title=\"annotation in typeannos\">@RepParameterA</a> <a href=" 673 + "\"RepParameterB.html\" title=\"annotation in typeannos\">" 674 + "@RepParameterB</a> <a href=\"RepParameterB.html\" title=" 675 + "\"annotation in typeannos\">@RepParameterB</a>\n " 676 + "java.lang.String <a href=\"RepTypeUseA.html\" title=" 677 + "\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseA.html\" " 678 + "title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=" 679 + "\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 680 + "@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" title=" 681 + "\"annotation in typeannos\">@RepTypeUseB</a> ... vararg)"); 682 683 checkOutput("typeannos/RepeatingOnTypeParametersBoundsTypeArgumentsOnMethod.html", true, 684 "<code>(package private) <T> java.lang.String</code></td>\n" 685 + "<th class=\"colSecond\" scope=\"row\"><code><span class=\"memberNameLink\"><a href=" 686 + "\"#" 687 + "genericMethod(T)\">genericMethod</a></span>(T t)</code>", 688 689 "<code>(package private) <T> java.lang.String</code></td>\n" 690 + "<th class=\"colSecond\" scope=\"row\"><code><span class=\"memberNameLink\"><a href=" 691 + "\"#" 692 + "genericMethod2(T)\">genericMethod2</a></span>(<a href=\"RepTypeUseA.html" 693 + "\" title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseA.html" 694 + "\" title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseB.html" 695 + "\" title=\"annotation in typeannos\">@RepTypeUseB</a> <a href=\"RepTypeUseB.html" 696 + "\" title=\"annotation in typeannos\">@RepTypeUseB</a> T t)</code>", 697 698 "<code>(package private) java.lang.String</code></td>\n<th class=\"colSecond\" scope=\"row\"><code>" 699 + "<span class=\"memberNameLink\"><a href=\"#" 700 + "test()\">test</a></span>()</code>", 701 702 "java.lang.String test(<a href=\"RepTypeUseA.html\" " 703 + "title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=" 704 + "\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 705 + "@RepTypeUseA</a> <a href=\"RepTypeUseB.html\" title=" 706 + "\"annotation in typeannos\">@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" " 707 + "title=\"annotation in typeannos\">@RepTypeUseB</a> " 708 + "RepeatingOnTypeParametersBoundsTypeArgumentsOnMethod<<a href=" 709 + "\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 710 + "@RepTypeUseA</a> <a href=\"RepTypeUseA.html\" title=" 711 + "\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseB.html" 712 + "\" title=\"annotation in typeannos\">@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" " 713 + "title=\"annotation in typeannos\">@RepTypeUseB</a> T> this)"); 714 715 checkOutput("typeannos/RepeatingOnVoidMethodDeclaration.html", true, 716 "<a href=\"RepMethodA.html\" title=\"annotation in typeannos\">" 717 + "@RepMethodA</a> <a href=\"RepMethodA.html\" title=" 718 + "\"annotation in typeannos\">@RepMethodA</a>\n<a href=\"RepMethodB.html" 719 + "\" title=\"annotation in typeannos\">@RepMethodB</a> <a href=" 720 + "\"RepMethodB.html\" title=\"annotation in typeannos\">" 721 + "@RepMethodB</a>\nvoid test()"); 722 } 723 } | 60 61 "implements <a href=\"ClassExtB.html\" title=\"" 62 + "annotation in typeannos\">@ClassExtB</a> java.lang.CharSequence, " 63 + "<a href=\"ClassExtA.html\" title=\"annotation in " 64 + "typeannos\">@ClassExtA</a> <a href=\"ParameterizedInterface.html\" " 65 + "title=\"interface in typeannos\">ParameterizedInterface</a><" 66 + "<a href=\"ClassExtB.html\" title=\"annotation in " 67 + "typeannos\">@ClassExtB</a> java.lang.String></pre>"); 68 69 checkOutput("typeannos/MyInterface.html", true, 70 "extends <a href=\"ClassExtA.html\" title=\"annotation " 71 + "in typeannos\">@ClassExtA</a> <a href=\"" 72 + "ParameterizedInterface.html\" title=\"interface in typeannos\">" 73 + "ParameterizedInterface</a><<a href=\"ClassExtA.html\" " 74 + "title=\"annotation in typeannos\">@ClassExtA</a> java.lang.String>, " 75 + "<a href=\"ClassExtB.html\" title=\"annotation in " 76 + "typeannos\">@ClassExtB</a> java.lang.CharSequence</pre>"); 77 78 // Test for type annotations on Class Parameters (ClassParameters.java). 79 checkOutput("typeannos/ExtendsBound.html", true, 80 "class <span class=\"typeNameLabel\">ExtendsBound<K extends <a " 81 + "href=\"ClassParamA.html\" title=\"annotation in " 82 + "typeannos\">@ClassParamA</a> java.lang.String></span>"); 83 84 checkOutput("typeannos/ExtendsGeneric.html", true, 85 "<pre>class <span class=\"typeNameLabel\">ExtendsGeneric<K extends " 86 + "<a href=\"ClassParamA.html\" title=\"annotation in " 87 + "typeannos\">@ClassParamA</a> <a href=\"Unannotated.html\" " 88 + "title=\"class in typeannos\">Unannotated</a><<a href=\"" 89 + "ClassParamB.html\" title=\"annotation in typeannos\">" 90 + "@ClassParamB</a> java.lang.String>></span>"); 91 92 checkOutput("typeannos/TwoBounds.html", true, 93 "<pre>class <span class=\"typeNameLabel\">TwoBounds<K extends <a href=\"" 94 + "ClassParamA.html\" title=\"annotation in typeannos\">" 95 + "@ClassParamA</a> java.lang.String,V extends <a href=\"" 96 + "ClassParamB.html\" title=\"annotation in typeannos\">@ClassParamB" 97 + "</a> java.lang.String></span>"); 98 99 checkOutput("typeannos/Complex1.html", true, 100 "class <span class=\"typeNameLabel\">Complex1<K extends <a href=\"" 101 + "ClassParamA.html\" title=\"annotation in typeannos\">" 102 + "@ClassParamA</a> java.lang.String & java.lang.Runnable></span>"); 103 104 checkOutput("typeannos/Complex2.html", true, 105 "class <span class=\"typeNameLabel\">Complex2<K extends java.lang." 106 + "String & <a href=\"ClassParamB.html\" title=\"" 107 + "annotation in typeannos\">@ClassParamB</a> java.lang.Runnable></span>"); 108 109 checkOutput("typeannos/ComplexBoth.html", true, 110 "class <span class=\"typeNameLabel\">ComplexBoth<K extends <a href=\"" 111 + "ClassParamA.html\" title=\"annotation in typeannos\"" 112 + ">@ClassParamA</a> java.lang.String & <a href=\"" 113 + "ClassParamA.html\" title=\"annotation in typeannos\">@ClassParamA" 114 + "</a> java.lang.Runnable></span>"); 115 116 // Test for type annotations on fields (Fields.java). 117 checkOutput("typeannos/DefaultScope.html", true, 118 "<div class=\"memberSignature\"><span class=\"returnType\"><a href=\"Parameterized.html\" " 119 + "title=\"class in typeannos\">Parameterized</a><<a href=\"FldA.html\" " 120 + "title=\"annotation in typeannos\">@FldA</a> java.lang.String," 121 + "<a href=\"FldB.html\" title=\"annotation in typeannos\">@FldB</a> java.lang.String>" 122 + "</span> <span class=\"memberName\">bothTypeArgs</span></div>", 123 124 "<div class=\"memberSignature\"><span class=\"returnType\"><a href=\"FldA.html\" " 125 + "title=\"annotation in typeannos\">@FldA</a> java.lang.String <a href=\"FldB.html\" " 126 + "title=\"annotation in typeannos\">@FldB</a> []</span> " 127 + "<span class=\"memberName\">array1Deep</span></div>", 128 129 "<div class=\"memberSignature\"><span class=\"returnType\">java.lang.String " 130 + "<a href=\"FldB.html\" title=\"annotation in typeannos\">@FldB</a> [][]</span> " 131 + "<span class=\"memberName\">array2SecondOld</span></div>", 132 133 // When JDK-8068737, we should change the order 134 "<div class=\"memberSignature\"><span class=\"returnType\"><a href=\"FldD.html\" " 135 + "title=\"annotation in typeannos\">@FldD</a> java.lang.String <a href=\"FldC.html\" " 136 + "title=\"annotation in typeannos\">@FldC</a> <a href=\"FldB.html\" " 137 + "title=\"annotation in typeannos\">@FldB</a> [] <a href=\"FldC.html\" " 138 + "title=\"annotation in typeannos\">@FldC</a> <a href=\"FldA.html\" " 139 + "title=\"annotation in typeannos\">@FldA</a> []</span> " 140 + "<span class=\"memberName\">array2Deep</span></div>"); 141 142 checkOutput("typeannos/ModifiedScoped.html", true, 143 "<div class=\"memberSignature\"><span class=\"modifiers\">public final</span>" 144 + " <span class=\"returnType\"><a href=\"Parameterized.html\" " 145 + "title=\"class in typeannos\">Parameterized</a><<a href=\"FldA.html\" " 146 + "title=\"annotation in typeannos\">@FldA</a> <a href=\"Parameterized.html\" " 147 + "title=\"class in typeannos\">Parameterized</a><<a href=\"FldA.html\" " 148 + "title=\"annotation in typeannos\">@FldA</a> java.lang.String," 149 + "<a href=\"FldB.html\" title=\"annotation in typeannos\">@FldB</a> " 150 + "java.lang.String>,<a href=\"FldB.html\" " 151 + "title=\"annotation in typeannos\">@FldB</a> java.lang.String>" 152 + "</span> <span class=\"memberName\">nestedParameterized</span></div>", 153 154 "<div class=\"memberSignature\"><span class=\"modifiers\">public final</span> " 155 + "<span class=\"returnType\"><a href=\"FldA.html\" title=\"annotation in typeannos\">" 156 + "@FldA</a> java.lang.String[][]</span> " 157 + "<span class=\"memberName\">array2</span></div>"); 158 159 // Test for type annotations on method return types (MethodReturnType.java). 160 checkOutput("typeannos/MtdDefaultScope.html", true, 161 "<div class=\"memberSignature\"><span class=\"modifiers\">public</span>" 162 + " <span class=\"typeParameters\"><T></span> <span " 163 + "class=\"returnType\"><a href=\"MRtnA.html\" title=\"annotation in typeannos\">" 164 + "@MRtnA</a> java.lang.String</span> " 165 + "<span class=\"memberName\">method</span>()</div>", 166 167 // When JDK-8068737 is fixed, we should change the order 168 "<div class=\"memberSignature\"><span class=\"returnType\"><a href=\"MRtnA.html\" " 169 + "title=\"annotation in typeannos\">@MRtnA</a> java.lang.String <a href=\"MRtnB.html\" " 170 + "title=\"annotation in typeannos\">@MRtnB</a> [] <a href=\"MRtnA.html\" " 171 + "title=\"annotation in typeannos\">@MRtnA</a> []</span> <span class=\"memberName\">" 172 + "array2Deep</span>()</div>", 173 174 "<div class=\"memberSignature\"><span class=\"returnType\"><a href=\"MRtnA.html\" " 175 + "title=\"annotation in typeannos\">@MRtnA</a> java.lang.String[][]</span> " 176 + "<span class=\"memberName\">array2</span>()</div>"); 177 178 checkOutput("typeannos/MtdModifiedScoped.html", true, 179 "<div class=\"memberSignature\"><span class=\"modifiers\">public final</span> " 180 + "<span class=\"returnType\"><a href=\"MtdParameterized.html\" " 181 + "title=\"class in typeannos\">MtdParameterized</a><<a href=\"MRtnA.html\" " 182 + "title=\"annotation in typeannos\">@MRtnA</a> <a href=\"MtdParameterized.html\" " 183 + "title=\"class in typeannos\">MtdParameterized</a><<a href=\"MRtnA.html\" " 184 + "title=\"annotation in typeannos\">@MRtnA</a> java.lang.String," 185 + "<a href=\"MRtnB.html\" title=\"annotation in typeannos\">@MRtnB</a> " 186 + "java.lang.String>,<a href=\"MRtnB.html\" title=\"annotation in typeannos\">" 187 + "@MRtnB</a> java.lang.String></span> <span class=\"memberName\">" 188 + "nestedMtdParameterized</span>()</div>"); 189 190 // Test for type annotations on method type parameters (MethodTypeParameters.java). 191 checkOutput("typeannos/UnscopedUnmodified.html", true, 192 "<div class=\"memberSignature\"><span class=\"typeParameters\"><K extends " 193 + "<a href=\"MTyParamA.html\" title=\"annotation in typeannos\">@MTyParamA</a> " 194 + "java.lang.String></span> <span class=\"returnType\">void</span> " 195 + "<span class=\"memberName\">methodExtends</span>()</div>", 196 197 "<div class=\"memberSignature\"><span class=\"typeParametersLong\"><K extends " 198 + "<a href=\"MTyParamA.html\" title=\"annotation in typeannos\">@MTyParamA</a> " 199 + "<a href=\"MtdTyParameterized.html\" title=\"class in typeannos\">MtdTyParameterized</a>" 200 + "<<a href=\"MTyParamB.html\" title=\"annotation in typeannos\">@MTyParamB</a> " 201 + "java.lang.String>></span>\n<span class=\"returnType\">void</span>" 202 + " <span class=\"memberName\">nestedExtends</span>()</div>"); 203 204 checkOutput("typeannos/PublicModifiedMethods.html", true, 205 "<div class=\"memberSignature\"><span class=\"modifiers\">public final</span> " 206 + "<span class=\"typeParameters\"><K extends <a href=\"MTyParamA.html\" " 207 + "title=\"annotation in typeannos\">@MTyParamA</a> java.lang.String></span>\n" 208 + "<span class=\"returnType\">void</span> " 209 + "<span class=\"memberName\">methodExtends</span>()</div>", 210 211 "<div class=\"memberSignature\"><span class=\"modifiers\">public final</span>" 212 + " <span class=\"typeParametersLong\"><K extends <a href=\"MTyParamA.html\" " 213 + "title=\"annotation in typeannos\">@MTyParamA</a> java.lang.String,\n" 214 + "V extends <a href=\"MTyParamA.html\" title=\"annotation in typeannos\">" 215 + "@MTyParamA</a> <a href=\"MtdTyParameterized.html\" title=\"class in typeannos\">" 216 + "MtdTyParameterized</a><<a href=\"MTyParamB.html\" title=\"annotation in typeannos\">" 217 + "@MTyParamB</a> java.lang.String>></span>\n<span class=\"returnType\">void</span>" 218 + " <span class=\"memberName\">dual</span>()</div>"); 219 220 // Test for type annotations on parameters (Parameters.java). 221 checkOutput("typeannos/Parameters.html", true, 222 "<div class=\"memberSignature\"><span class=\"returnType\">void</span> " 223 + "<span class=\"memberName\">unannotated</span>(<span class=\"arguments\">" 224 + "<a href=\"ParaParameterized.html\" title=\"class in typeannos\">ParaParameterized</a>" 225 + "<java.lang.String,java.lang.String> a)</span></div>", 226 227 "<div class=\"memberSignature\"><span class=\"returnType\">void</span> " 228 + "<span class=\"memberName\">nestedParaParameterized</span>" 229 + "(<span class=\"arguments\"><a href=\"ParaParameterized.html\" " 230 + "title=\"class in typeannos\">ParaParameterized</a><<a href=\"ParamA.html\" " 231 + "title=\"annotation in typeannos\">@ParamA</a> <a href=\"ParaParameterized.html\" " 232 + "title=\"class in typeannos\">ParaParameterized</a><<a href=\"ParamA.html\" " 233 + "title=\"annotation in typeannos\">@ParamA</a> java.lang.String," 234 + "<a href=\"ParamB.html\" title=\"annotation in typeannos\">@ParamB</a> " 235 + "java.lang.String>,<a href=\"ParamB.html\" title=\"annotation in typeannos\">" 236 + "@ParamB</a> java.lang.String> a)</span></div>", 237 238 // When JDK-8068737 is fixed, we should change the order 239 "<div class=\"memberSignature\"><span class=\"returnType\">void</span> " 240 + "<span class=\"memberName\">array2Deep</span>(<span class=\"arguments\">" 241 + "<a href=\"ParamA.html\" title=\"annotation in typeannos\">@ParamA</a> " 242 + "java.lang.String <a href=\"ParamB.html\" title=\"annotation in typeannos\">" 243 + "@ParamB</a> [] <a href=\"ParamA.html\" title=\"annotation in typeannos\">" 244 + "@ParamA</a> [] a)</span></div>"); 245 246 // Test for type annotations on throws (Throws.java). 247 checkOutput("typeannos/ThrDefaultUnmodified.html", true, 248 "<div class=\"memberSignature\"><span class=\"returnType\">void</span> " 249 + "<span class=\"memberName\">oneException</span>()\n" 250 + " throws <span class=\"exceptions\"><a href=\"ThrA.html\" " 251 + "title=\"annotation in typeannos\">@ThrA</a> java.lang.Exception</span></div>", 252 253 "<div class=\"memberSignature\"><span class=\"returnType\">void</span> " 254 + "<span class=\"memberName\">twoExceptions</span>()\n" 255 + " throws <span class=\"exceptions\"><a href=\"ThrA.html\" " 256 + "title=\"annotation in typeannos\">@ThrA</a> java.lang.RuntimeException,\n" 257 + "<a href=\"ThrA.html\" title=\"annotation in typeannos\">@ThrA</a> " 258 + "java.lang.Exception</span></div>"); 259 260 checkOutput("typeannos/ThrPublicModified.html", true, 261 "<div class=\"memberSignature\"><span class=\"modifiers\">public final</span> " 262 + "<span class=\"returnType\">void</span> <span class=\"memberName\">" 263 + "oneException</span>(<span class=\"arguments\">java.lang.String a)</span>\n" 264 + " throws <span class=\"exceptions\"><a href=\"ThrA.html\" " 265 + "title=\"annotation in typeannos\">@ThrA</a> java.lang.Exception</span></div>", 266 267 "<div class=\"memberSignature\"><span class=\"modifiers\">public final</span> " 268 + "<span class=\"returnType\">void</span> <span class=\"memberName\">" 269 + "twoExceptions</span>(<span class=\"arguments\">java.lang.String a)</span>\n" 270 + " throws <span class=\"exceptions\"><a href=\"ThrA.html\" " 271 + "title=\"annotation in typeannos\">@ThrA</a> java.lang.RuntimeException,\n" 272 + "<a href=\"ThrA.html\" title=\"annotation in typeannos\">@ThrA</a> " 273 + "java.lang.Exception</span></div>"); 274 275 checkOutput("typeannos/ThrWithValue.html", true, 276 "<div class=\"memberSignature\"><span class=\"returnType\">void</span> " 277 + "<span class=\"memberName\">oneException</span>()\n" 278 + " throws <span class=\"exceptions\"><a href=\"ThrB.html\" " 279 + "title=\"annotation in typeannos\">@ThrB</a>(\"m\") java.lang.Exception</span></div>", 280 281 "<div class=\"memberSignature\"><span class=\"returnType\">void</span> " 282 + "<span class=\"memberName\">twoExceptions</span>()\n" 283 + " throws <span class=\"exceptions\"><a href=\"ThrB.html\" " 284 + "title=\"annotation in typeannos\">@ThrB</a>(\"m\") java.lang.RuntimeException,\n" 285 + "<a href=\"ThrA.html\" title=\"annotation in typeannos\">@ThrA</a> " 286 + "java.lang.Exception</span></div>"); 287 288 // Test for type annotations on type parameters (TypeParameters.java). 289 checkOutput("typeannos/TestMethods.html", true, 290 "<div class=\"memberSignature\"><span class=\"typeParameters\"><K,\n" 291 + "<a href=\"TyParaA.html\" title=\"annotation in typeannos\">@TyParaA</a> V extends " 292 + "<a href=\"TyParaA.html\" title=\"annotation in typeannos\">@TyParaA</a> " 293 + "java.lang.String></span>\n<span class=\"returnType\">void</span> " 294 + "<span class=\"memberName\">secondAnnotated</span>()</div>" 295 ); 296 297 // Test for type annotations on wildcard type (Wildcards.java). 298 checkOutput("typeannos/BoundTest.html", true, 299 "<div class=\"memberSignature\"><span class=\"returnType\">void</span> " 300 + "<span class=\"memberName\">wcExtends</span>(<span class=\"arguments\">" 301 + "<a href=\"MyList.html\" title=\"class in typeannos\">MyList</a><? extends " 302 + "<a href=\"WldA.html\" title=\"annotation in typeannos\">@WldA</a> " 303 + "java.lang.String> l)</span></div>", 304 305 "<div class=\"memberSignature\"><span class=\"returnType\"><a href=\"MyList.html\" " 306 + "title=\"class in typeannos\">MyList</a><? super <a href=\"WldA.html\" " 307 + "title=\"annotation in typeannos\">@WldA</a> java.lang.String></span> " 308 + "<span class=\"memberName\">returnWcSuper</span>()</div>"); 309 310 checkOutput("typeannos/BoundWithValue.html", true, 311 "<div class=\"memberSignature\"><span class=\"returnType\">void</span> " 312 + "<span class=\"memberName\">wcSuper</span>(<span class=\"arguments\">" 313 + "<a href=\"MyList.html\" title=\"class in typeannos\">MyList</a><? super " 314 + "<a href=\"WldB.html\" title=\"annotation in typeannos\">@WldB</a>(\"m\") " 315 + "java.lang.String> l)</span></div>", 316 317 "<div class=\"memberSignature\"><span class=\"returnType\"><a href=\"MyList.html\" " 318 + "title=\"class in typeannos\">MyList</a><? extends <a href=\"WldB.html\" " 319 + "title=\"annotation in typeannos\">@WldB</a>(\"m\") java.lang.String></span>" 320 + " <span class=\"memberName\">returnWcExtends</span>()</div>"); 321 322 // Test for receiver annotations (Receivers.java). 323 checkOutput("typeannos/DefaultUnmodified.html", true, 324 "<div class=\"memberSignature\"><span class=\"returnType\">void</span> " 325 + "<span class=\"memberName\">withException</span>(<span class=\"arguments\">" 326 + "<a href=\"RcvrA.html\" title=\"annotation in typeannos\">@RcvrA</a>" 327 + " DefaultUnmodified this)</span>\n" 328 + " throws <span class=\"exceptions\">java.lang.Exception</span></div>", 329 330 "<div class=\"memberSignature\"><span class=\"returnType\">java.lang.String</span> " 331 + "<span class=\"memberName\">nonVoid</span>(<span class=\"arguments\">" 332 + "<a href=\"RcvrA.html\" title=\"annotation in typeannos\">@RcvrA</a> " 333 + "<a href=\"RcvrB.html\" title=\"annotation in typeannos\">@RcvrB</a>(\"m\")" 334 + " DefaultUnmodified this)</span></div>", 335 336 "<div class=\"memberSignature\"><span class=\"typeParameters\"><T extends " 337 + "java.lang.Runnable></span> <span class=\"returnType\">void</span> " 338 + "<span class=\"memberName\">accept</span>(<span class=\"arguments\">" 339 + "<a href=\"RcvrA.html\" title=\"annotation in typeannos\">@RcvrA</a> " 340 + "DefaultUnmodified this,\nT r)</span>\n" 341 + " throws <span class=\"exceptions\">" 342 + "java.lang.Exception</span></div>"); 343 344 checkOutput("typeannos/PublicModified.html", true, 345 "<div class=\"memberSignature\"><span class=\"modifiers\">public final</span> " 346 + "<span class=\"returnType\">java.lang.String</span> <span class=\"memberName\">" 347 + "nonVoid</span>(<span class=\"arguments\"><a href=\"RcvrA.html\" " 348 + "title=\"annotation in typeannos\">@RcvrA</a> PublicModified this)" 349 + "</span></div>", 350 351 "<div class=\"memberSignature\"><span class=\"modifiers\">public final</span> " 352 + "<span class=\"typeParameters\"><T extends java.lang.Runnable></span> " 353 + "<span class=\"returnType\">void</span> <span class=\"memberName\">accept" 354 + "</span>(<span class=\"arguments\"><a href=\"RcvrA.html\" " 355 + "title=\"annotation in typeannos\">@RcvrA</a> PublicModified this,\n" 356 + "T r)</span>\n throws " 357 + "<span class=\"exceptions\">java.lang.Exception</span></div>"); 358 359 checkOutput("typeannos/WithValue.html", true, 360 "<div class=\"memberSignature\"><span class=\"typeParameters\"><T extends " 361 + "java.lang.Runnable></span> <span class=\"returnType\">void</span> " 362 + "<span class=\"memberName\">accept</span>(<span class=\"arguments\">" 363 + "<a href=\"RcvrB.html\" title=\"annotation in typeannos\">@RcvrB</a>(\"m\")" 364 + " WithValue this,\nT r)</span>\n" 365 + " throws <span class=\"exceptions\">" 366 + "java.lang.Exception</span></div>"); 367 368 checkOutput("typeannos/WithFinal.html", true, 369 "<div class=\"memberSignature\"><span class=\"returnType\">java.lang.String</span>" 370 + " <span class=\"memberName\">nonVoid</span>(<span class=\"arguments\">" 371 + "<a href=\"RcvrB.html\" title=\"annotation in typeannos\">@RcvrB</a>(\"m\") " 372 + "<a href=\"WithFinal.html\" title=\"class in typeannos\">WithFinal</a>" 373 + " afield)</span></div>"); 374 375 checkOutput("typeannos/WithBody.html", true, 376 "<div class=\"memberSignature\"><span class=\"returnType\">void</span> " 377 + "<span class=\"memberName\">field</span>(<span class=\"arguments\">" 378 + "<a href=\"RcvrA.html\" title=\"annotation in typeannos\">@RcvrA</a>" 379 + " WithBody this)</span></div>"); 380 381 checkOutput("typeannos/Generic2.html", true, 382 "<div class=\"memberSignature\"><span class=\"returnType\">void</span> " 383 + "<span class=\"memberName\">test2</span>(<span class=\"arguments\">" 384 + "<a href=\"RcvrA.html\" title=\"annotation in typeannos\">@RcvrA</a>" 385 + " Generic2<X> this)</span></div>"); 386 387 388 // Test for repeated type annotations (RepeatedAnnotations.java). 389 checkOutput("typeannos/RepeatingAtClassLevel.html", true, 390 "<pre><a href=\"RepTypeA.html\" title=\"annotation in " 391 + "typeannos\">@RepTypeA</a> <a href=\"RepTypeA.html\" " 392 + "title=\"annotation in typeannos\">@RepTypeA</a>\n<a href=" 393 + "\"RepTypeB.html\" title=\"annotation in typeannos\">" 394 + "@RepTypeB</a> <a href=\"RepTypeB.html\" title=" 395 + "\"annotation in typeannos\">@RepTypeB</a>\nclass <span class=" 396 + "\"typeNameLabel\">RepeatingAtClassLevel</span>\nextends " 397 + "java.lang.Object</pre>"); 398 399 // @ignore 8146008 400 // checkOutput("typeannos/RepeatingAtClassLevel2.html", true, 401 // "<pre><a href=\"RepTypeUseA.html\" title=\"annotation " 402 // + "in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseA.html" 403 // + "\" title=\"annotation in typeannos\">@RepTypeUseA</a>\n<a href=" 404 // + "\"RepTypeUseB.html\" title=\"annotation in typeannos" 405 // + "\">@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" " 406 // + "title=\"annotation in typeannos\">@RepTypeUseB</a>\nclass <span " 407 // + "class=\"typeNameLabel\">RepeatingAtClassLevel2</span>\nextends " 408 // + "java.lang.Object</pre>"); 409 // 410 // checkOutput("typeannos/RepeatingAtClassLevel2.html", true, 411 // "<pre><a href=\"RepAllContextsA.html\" title=\"annotation" 412 // + " in typeannos\">@RepAllContextsA</a> <a href=\"RepAllContextsA.html" 413 // + "\" title=\"annotation in typeannos\">@RepAllContextsA</a>\n<a href=" 414 // + "\"RepAllContextsB.html\" title=\"annotation in typeannos" 415 // + "\">@RepAllContextsB</a> <a href=\"RepAllContextsB.html" 416 // + "\" title=\"annotation in typeannos\">@RepAllContextsB</a>\n" 417 // + "class <span class=\"typeNameLabel\">RepeatingAtClassLevel3</span>\n" 418 // + "extends java.lang.Object</pre>"); 419 420 checkOutput("typeannos/RepeatingOnConstructor.html", true, 421 "<div class=\"memberSignature\"><span class=\"annotations\">" 422 + "<a href=\"RepConstructorA.html\" title=\"annotation in typeannos\">" 423 + "@RepConstructorA</a> <a href=\"RepConstructorA.html\" " 424 + "title=\"annotation in typeannos\">@RepConstructorA</a>\n" 425 + "<a href=\"RepConstructorB.html\" title=\"annotation in typeannos\">" 426 + "@RepConstructorB</a> <a href=\"RepConstructorB.html\" " 427 + "title=\"annotation in typeannos\">@RepConstructorB</a>\n" 428 + "</span><span class=\"memberName\">RepeatingOnConstructor</span>()</div>", 429 430 "<div class=\"memberSignature\"><span class=\"annotations\">" 431 + "<a href=\"RepConstructorA.html\" title=\"annotation in typeannos\">" 432 + "@RepConstructorA</a> <a href=\"RepConstructorA.html\" " 433 + "title=\"annotation in typeannos\">@RepConstructorA</a>\n" 434 + "<a href=\"RepConstructorB.html\" title=\"annotation in typeannos\">" 435 + "@RepConstructorB</a> <a href=\"RepConstructorB.html\" " 436 + "title=\"annotation in typeannos\">@RepConstructorB</a>\n" 437 + "</span><span class=\"memberName\">RepeatingOnConstructor</span>" 438 + "(<span class=\"arguments\">int i,\n" 439 + "int j)</span></div>", 440 441 "<div class=\"memberSignature\"><span class=\"annotations\">" 442 + "<a href=\"RepAllContextsA.html\" title=\"annotation in typeannos\">" 443 + "@RepAllContextsA</a> <a href=\"RepAllContextsA.html\" " 444 + "title=\"annotation in typeannos\">@RepAllContextsA</a>\n" 445 + "<a href=\"RepAllContextsB.html\" title=\"annotation in typeannos\">" 446 + "@RepAllContextsB</a> <a href=\"RepAllContextsB.html\" " 447 + "title=\"annotation in typeannos\">@RepAllContextsB</a>\n" 448 + "</span><span class=\"memberName\">RepeatingOnConstructor</span>" 449 + "(<span class=\"arguments\">int i,\n" 450 + "int j,\nint k)</span></div>", 451 452 "<div class=\"memberSignature\"><span class=\"memberName\">RepeatingOnConstructor</span>" 453 + "(<span class=\"arguments\"><a href=\"RepParameterA.html\" " 454 + "title=\"annotation in typeannos\">@RepParameterA</a> " 455 + "<a href=\"RepParameterA.html\" title=\"annotation in typeannos\">@RepParameterA</a> " 456 + "<a href=\"RepParameterB.html\" title=\"annotation in typeannos\">@RepParameterB</a> " 457 + "<a href=\"RepParameterB.html\" title=\"annotation in typeannos\">@RepParameterB</a>\n" 458 + "java.lang.String parameter,\n<a href=\"RepParameterA.html\" " 459 + "title=\"annotation in typeannos\">@RepParameterA</a> " 460 + "<a href=\"RepParameterA.html\" title=\"annotation in typeannos\">@RepParameterA</a> " 461 + "<a href=\"RepParameterB.html\" title=\"annotation in typeannos\">@RepParameterB</a> " 462 + "<a href=\"RepParameterB.html\" title=\"annotation in typeannos\">@RepParameterB</a>\n" 463 + "java.lang.String <a href=\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 464 + "@RepTypeUseA</a> <a href=\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 465 + "@RepTypeUseA</a> <a href=\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 466 + "@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 467 + "@RepTypeUseB</a> ... vararg)</span></div>" 468 ); 469 470 checkOutput("typeannos/RepeatingOnConstructor.Inner.html", true, 471 "<code><span class=\"memberNameLink\"><a href=\"#%3Cinit%3E(java.lang.String," 472 + "java.lang.String...)\">Inner</a></span>(java.lang.String parameter,\n" 473 + "java.lang.String <a href=\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 474 + "@RepTypeUseA</a> <a href=\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 475 + "@RepTypeUseA</a> <a href=\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 476 + "@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 477 + "@RepTypeUseB</a> ... vararg)</code>", 478 "Inner</span>(<span class=\"arguments\"><a href=\"RepTypeUseA.html\" " 479 + "title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseA.html\" " 480 + "title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseB.html\" " 481 + "title=\"annotation in typeannos\">@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" " 482 + "title=\"annotation in typeannos\">@RepTypeUseB</a> RepeatingOnConstructor this,\n" 483 + "<a href=\"RepParameterA.html\" title=\"annotation in typeannos\">@RepParameterA</a> " 484 + "<a href=\"RepParameterA.html\" title=\"annotation in typeannos\">@RepParameterA</a> " 485 + "<a href=\"RepParameterB.html\" title=\"annotation in typeannos\">@RepParameterB</a> " 486 + "<a href=\"RepParameterB.html\" title=\"annotation in typeannos\">@RepParameterB</a>\n" 487 + "java.lang.String parameter,\n<a href=\"RepParameterA.html\" " 488 + "title=\"annotation in typeannos\">@RepParameterA</a> " 489 + "<a href=\"RepParameterA.html\" title=\"annotation in typeannos\">@RepParameterA</a> " 490 + "<a href=\"RepParameterB.html\" title=\"annotation in typeannos\">@RepParameterB</a> " 491 + "<a href=\"RepParameterB.html\" title=\"annotation in typeannos\">@RepParameterB</a>\n" 492 + "java.lang.String <a href=\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 493 + "@RepTypeUseA</a> <a href=\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 494 + "@RepTypeUseA</a> <a href=\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 495 + "@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 496 + "@RepTypeUseB</a> ... vararg)</span>"); 497 498 checkOutput("typeannos/RepeatingOnField.html", true, 499 "<code>(package private) java.lang.Integer</code></td>\n<th class=\"colSecond\" scope=\"row\">" 500 + "<code><span class=\"memberNameLink\"><a href=\"#i1" 501 + "\">i1</a></span></code>", 502 503 "<code>(package private) <a href=\"RepTypeUseA.html\" " 504 + "title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"" 505 + "RepTypeUseA.html\" title=\"annotation in typeannos\">" 506 + "@RepTypeUseA</a> <a href=\"RepTypeUseB.html\" title=" 507 + "\"annotation in typeannos\">@RepTypeUseB</a> <a href=\"RepTypeUseB.html" 508 + "\" title=\"annotation in typeannos\">@RepTypeUseB</a> java.lang.Integer</code></td>\n" 509 + "<th class=\"colSecond\" scope=\"row\"><code><span class=\"memberNameLink\"><a href=" 510 + "\"#i2\">i2</a></span></code>", 511 512 "<code>(package private) <a href=\"RepTypeUseA.html\" title=" 513 + "\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseA.html\" " 514 + "title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=" 515 + "\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 516 + "@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" title=" 517 + "\"annotation in typeannos\">@RepTypeUseB</a> java.lang.Integer</code>" 518 + "</td>\n<th class=\"colSecond\" scope=\"row\"><code><span class=\"memberNameLink\">" 519 + "<a href=\"#i3\">i3</a></span></code>", 520 521 "<code>(package private) <a href=\"RepAllContextsA.html\" title=\"" 522 + "annotation in typeannos\">@RepAllContextsA</a> <a href=\"RepAllContextsA.html" 523 + "\" title=\"annotation in typeannos\">@RepAllContextsA</a> <a href=" 524 + "\"RepAllContextsB.html\" title=\"annotation in typeannos\">" 525 + "@RepAllContextsB</a> <a href=\"RepAllContextsB.html\" title=" 526 + "\"annotation in typeannos\">@RepAllContextsB</a> java.lang.Integer</code>" 527 + "</td>\n<th class=\"colSecond\" scope=\"row\"><code><span class=\"memberNameLink\">" 528 + "<a href=\"#i4\">i4</a></span></code>", 529 530 "<code>(package private) java.lang.String <a href=\"RepTypeUseA.html" 531 + "\" title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=" 532 + "\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 533 + "@RepTypeUseA</a> <a href=\"RepTypeUseB.html\" title=" 534 + "\"annotation in typeannos\">@RepTypeUseB</a> <a href=\"RepTypeUseB.html" 535 + "\" title=\"annotation in typeannos\">@RepTypeUseB</a> [] <a href=" 536 + "\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 537 + "@RepTypeUseA</a> <a href=\"RepTypeUseA.html\" title=" 538 + "\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseB.html" 539 + "\" title=\"annotation in typeannos\">@RepTypeUseB</a> <a href=" 540 + "\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 541 + "@RepTypeUseB</a> []</code></td>\n<th class=\"colSecond\" scope=\"row\"><code><span class=" 542 + "\"memberNameLink\"><a href=\"#sa" 543 + "\">sa</a></span></code>", 544 545 "<div class=\"memberSignature\"><span class=\"annotations\">" 546 + "<a href=\"RepFieldA.html\" title=\"annotation in typeannos\">@RepFieldA</a> " 547 + "<a href=\"RepFieldA.html\" title=\"annotation in typeannos\">@RepFieldA</a>\n" 548 + "<a href=\"RepFieldB.html\" title=\"annotation in typeannos\">@RepFieldB</a> " 549 + "<a href=\"RepFieldB.html\" title=\"annotation in typeannos\">@RepFieldB</a>\n" 550 + "</span><span class=\"returnType\">java.lang.Integer</span> " 551 + "<span class=\"memberName\">i1</span></div>", 552 553 "<div class=\"memberSignature\"><span class=\"returnType\">" 554 + "<a href=\"RepTypeUseA.html\" title=\"annotation in typeannos\">@RepTypeUseA</a> " 555 + "<a href=\"RepTypeUseA.html\" title=\"annotation in typeannos\">@RepTypeUseA</a> " 556 + "<a href=\"RepTypeUseB.html\" title=\"annotation in typeannos\">@RepTypeUseB</a> " 557 + "<a href=\"RepTypeUseB.html\" title=\"annotation in typeannos\">@RepTypeUseB</a> " 558 + "java.lang.Integer</span> <span class=\"memberName\">i2</span></div>", 559 560 "<div class=\"memberSignature\"><span class=\"annotations\">" 561 + "<a href=\"RepFieldA.html\" title=\"annotation in typeannos\">@RepFieldA</a> " 562 + "<a href=\"RepFieldA.html\" title=\"annotation in typeannos\">@RepFieldA</a>\n" 563 + "<a href=\"RepFieldB.html\" title=\"annotation in typeannos\">@RepFieldB</a> " 564 + "<a href=\"RepFieldB.html\" title=\"annotation in typeannos\">@RepFieldB</a>\n" 565 + "</span><span class=\"returnType\"><a href=\"RepTypeUseA.html\" " 566 + "title=\"annotation in typeannos\">@RepTypeUseA</a> " 567 + "<a href=\"RepTypeUseA.html\" title=\"annotation in typeannos\">@RepTypeUseA</a> " 568 + "<a href=\"RepTypeUseB.html\" title=\"annotation in typeannos\">@RepTypeUseB</a> " 569 + "<a href=\"RepTypeUseB.html\" title=\"annotation in typeannos\">@RepTypeUseB</a> " 570 + "java.lang.Integer</span> <span class=\"memberName\">i3</span></div>", 571 572 "<div class=\"memberSignature\"><span class=\"annotations\">" 573 + "<a href=\"RepAllContextsA.html\" title=\"annotation in typeannos\">@RepAllContextsA</a> " 574 + "<a href=\"RepAllContextsA.html\" title=\"annotation in typeannos\">@RepAllContextsA</a>\n" 575 + "<a href=\"RepAllContextsB.html\" title=\"annotation in typeannos\">@RepAllContextsB</a> " 576 + "<a href=\"RepAllContextsB.html\" title=\"annotation in typeannos\">@RepAllContextsB</a>\n" 577 + "</span><span class=\"returnType\"><a href=\"RepAllContextsA.html\" " 578 + "title=\"annotation in typeannos\">@RepAllContextsA</a> " 579 + "<a href=\"RepAllContextsA.html\" title=\"annotation in typeannos\">@RepAllContextsA</a> " 580 + "<a href=\"RepAllContextsB.html\" title=\"annotation in typeannos\">@RepAllContextsB</a> " 581 + "<a href=\"RepAllContextsB.html\" title=\"annotation in typeannos\">@RepAllContextsB</a> " 582 + "java.lang.Integer</span> <span class=\"memberName\">i4</span></div>", 583 584 "<div class=\"memberSignature\"><span class=\"returnType\">java.lang.String " 585 + "<a href=\"RepTypeUseA.html\" title=\"annotation in typeannos\">@RepTypeUseA</a> " 586 + "<a href=\"RepTypeUseA.html\" title=\"annotation in typeannos\">@RepTypeUseA</a> " 587 + "<a href=\"RepTypeUseB.html\" title=\"annotation in typeannos\">@RepTypeUseB</a> " 588 + "<a href=\"RepTypeUseB.html\" title=\"annotation in typeannos\">@RepTypeUseB</a> [] " 589 + "<a href=\"RepTypeUseA.html\" title=\"annotation in typeannos\">@RepTypeUseA</a> " 590 + "<a href=\"RepTypeUseA.html\" title=\"annotation in typeannos\">@RepTypeUseA</a> " 591 + "<a href=\"RepTypeUseB.html\" title=\"annotation in typeannos\">@RepTypeUseB</a> " 592 + "<a href=\"RepTypeUseB.html\" title=\"annotation in typeannos\">@RepTypeUseB</a> []" 593 + "</span> <span class=\"memberName\">sa</span></div>"); 594 595 checkOutput("typeannos/RepeatingOnMethod.html", true, 596 "<code>(package private) java.lang.String</code></td>\n<th class=\"colSecond\" scope=\"row\">" 597 + "<code><span class=\"memberNameLink\"><a href=" 598 + "\"#test1()\">test1</a></span>()</code>", 599 600 "<code>(package private) <a href=\"RepTypeUseA.html\" " 601 + "title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=" 602 + "\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 603 + "@RepTypeUseA</a> <a href=\"RepTypeUseB.html\" title=" 604 + "\"annotation in typeannos\">@RepTypeUseB</a> <a href=\"RepTypeUseB.html" 605 + "\" title=\"annotation in typeannos\">@RepTypeUseB</a> java.lang.String</code>" 606 + "</td>\n<th class=\"colSecond\" scope=\"row\"><code><span class=\"memberNameLink\">" 607 + "<a href=\"#test2()\">test2</a>" 608 + "</span>()</code>", 609 610 "<code>(package private) <a href=\"RepTypeUseA.html\" " 611 + "title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=" 612 + "\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 613 + "@RepTypeUseA</a> <a href=\"RepTypeUseB.html\" title=" 614 + "\"annotation in typeannos\">@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" " 615 + "title=\"annotation in typeannos\">@RepTypeUseB</a> java.lang.String</code>" 616 + "</td>\n<th class=\"colSecond\" scope=\"row\"><code><span class=\"memberNameLink\">" 617 + "<a href=\"#test3()\">test3</a>" 618 + "</span>()</code>", 619 620 "<code>(package private) <a href=\"RepAllContextsA.html\" " 621 + "title=\"annotation in typeannos\">@RepAllContextsA</a> <a href=" 622 + "\"RepAllContextsA.html\" title=\"annotation in typeannos\">" 623 + "@RepAllContextsA</a> <a href=\"RepAllContextsB.html\" " 624 + "title=\"annotation in typeannos\">@RepAllContextsB</a> <a href=" 625 + "\"RepAllContextsB.html\" title=\"annotation in typeannos\">" 626 + "@RepAllContextsB</a> java.lang.String</code></td>\n<th class=\"colSecond\" scope=\"row\">" 627 + "<code><span class=\"memberNameLink\"><a href=\"" 628 + "#test4()\">test4</a></span>()</code>", 629 630 "<code><span class=\"memberNameLink\"><a href=\"" 631 + "#test5(java.lang.String,java.lang.String...)\">test5</a></span>" 632 + "(java.lang.String parameter,\njava.lang.String <a href=" 633 + "\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 634 + "@RepTypeUseA</a> <a href=\"RepTypeUseA.html\" title=" 635 + "\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseB.html" 636 + "\" title=\"annotation in typeannos\">@RepTypeUseB</a> <a href=" 637 + "\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 638 + "@RepTypeUseB</a> ... vararg)</code>", 639 640 "<a href=\"RepMethodA.html\" title=\"annotation in typeannos\">@RepMethodA</a> " 641 + "<a href=\"RepMethodA.html\" title=\"annotation in typeannos\">@RepMethodA</a>\n" 642 + "<a href=\"RepMethodB.html\" title=\"annotation in typeannos\">@RepMethodB</a> " 643 + "<a href=\"RepMethodB.html\" title=\"annotation in typeannos\">@RepMethodB</a>\n" 644 + "</span><span class=\"returnType\">java.lang.String</span> " 645 + "<span class=\"memberName\">test1</span>()", 646 647 "<a href=\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 648 + "@RepTypeUseA</a> <a href=\"RepTypeUseA.html\" title=" 649 + "\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseB.html\" " 650 + "title=\"annotation in typeannos\">@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" " 651 + "title=\"annotation in typeannos\">@RepTypeUseB</a> java.lang.String</span>" 652 + " <span class=\"memberName\">test2</span>()", 653 654 "<a href=\"RepMethodA.html\" title=\"annotation in typeannos\">@RepMethodA</a> " 655 + "<a href=\"RepMethodA.html\" title=\"annotation in typeannos\">@RepMethodA</a>\n" 656 + "<a href=\"RepMethodB.html\" title=\"annotation in typeannos\">@RepMethodB</a> " 657 + "<a href=\"RepMethodB.html\" title=\"annotation in typeannos\">@RepMethodB</a>\n" 658 + "</span><span class=\"returnType\"><a href=\"RepTypeUseA.html\" " 659 + "title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseA.html\" " 660 + "title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseB.html\" " 661 + "title=\"annotation in typeannos\">@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" " 662 + "title=\"annotation in typeannos\">@RepTypeUseB</a> java.lang.String</span> " 663 + "<span class=\"memberName\">test3</span>()", 664 665 "<a href=\"RepAllContextsA.html\" title=\"annotation in typeannos\">@RepAllContextsA</a> " 666 + "<a href=\"RepAllContextsA.html\" title=\"annotation in typeannos\">@RepAllContextsA</a>\n" 667 + "<a href=\"RepAllContextsB.html\" title=\"annotation in typeannos\">@RepAllContextsB</a> " 668 + "<a href=\"RepAllContextsB.html\" title=\"annotation in typeannos\">@RepAllContextsB</a>\n" 669 + "</span><span class=\"returnType\"><a href=\"RepAllContextsA.html\" " 670 + "title=\"annotation in typeannos\">@RepAllContextsA</a> <a href=\"RepAllContextsA.html\" " 671 + "title=\"annotation in typeannos\">@RepAllContextsA</a> <a href=\"RepAllContextsB.html\" " 672 + "title=\"annotation in typeannos\">@RepAllContextsB</a> <a href=\"RepAllContextsB.html\" " 673 + "title=\"annotation in typeannos\">@RepAllContextsB</a> java.lang.String</span> " 674 + "<span class=\"memberName\">test4</span>()", 675 676 "java.lang.String</span> <span class=\"memberName\">test5</span>(" 677 + "<span class=\"arguments\"><a href=\"RepTypeUseA.html\" " 678 + "title=\"annotation in typeannos\">@RepTypeUseA</a> " 679 + "<a href=\"RepTypeUseA.html\" title=\"annotation in typeannos\">@RepTypeUseA</a> " 680 + "<a href=\"RepTypeUseB.html\" title=\"annotation in typeannos\">@RepTypeUseB</a> " 681 + "<a href=\"RepTypeUseB.html\" title=\"annotation in typeannos\">@RepTypeUseB</a>" 682 + " RepeatingOnMethod this,\n" 683 + "<a href=\"RepParameterA.html\" title=\"annotation in typeannos\">@RepParameterA</a> " 684 + "<a href=\"RepParameterA.html\" title=\"annotation in typeannos\">@RepParameterA</a> " 685 + "<a href=\"RepParameterB.html\" title=\"annotation in typeannos\">@RepParameterB</a> " 686 + "<a href=\"RepParameterB.html\" title=\"annotation in typeannos\">@RepParameterB</a>\n" 687 + "java.lang.String parameter,\n" 688 + "<a href=\"RepParameterA.html\" title=\"annotation in typeannos\">@RepParameterA</a> " 689 + "<a href=\"RepParameterA.html\" title=\"annotation in typeannos\">@RepParameterA</a> " 690 + "<a href=\"RepParameterB.html\" title=\"annotation in typeannos\">@RepParameterB</a> " 691 + "<a href=\"RepParameterB.html\" title=\"annotation in typeannos\">@RepParameterB</a>\n" 692 + "java.lang.String <a href=\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 693 + "@RepTypeUseA</a> <a href=\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 694 + "@RepTypeUseA</a> <a href=\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 695 + "@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" title=\"annotation in typeannos\">" 696 + "@RepTypeUseB</a> ... vararg)"); 697 698 checkOutput("typeannos/RepeatingOnTypeParametersBoundsTypeArgumentsOnMethod.html", true, 699 "<code>(package private) <T> java.lang.String</code></td>\n" 700 + "<th class=\"colSecond\" scope=\"row\"><code><span class=\"memberNameLink\"><a href=" 701 + "\"#" 702 + "genericMethod(T)\">genericMethod</a></span>(T t)</code>", 703 704 "<code>(package private) <T> java.lang.String</code></td>\n" 705 + "<th class=\"colSecond\" scope=\"row\"><code><span class=\"memberNameLink\"><a href=" 706 + "\"#" 707 + "genericMethod2(T)\">genericMethod2</a></span>(<a href=\"RepTypeUseA.html" 708 + "\" title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseA.html" 709 + "\" title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseB.html" 710 + "\" title=\"annotation in typeannos\">@RepTypeUseB</a> <a href=\"RepTypeUseB.html" 711 + "\" title=\"annotation in typeannos\">@RepTypeUseB</a> T t)</code>", 712 713 "<code>(package private) java.lang.String</code></td>\n<th class=\"colSecond\" scope=\"row\"><code>" 714 + "<span class=\"memberNameLink\"><a href=\"#" 715 + "test()\">test</a></span>()</code>", 716 717 "<span class=\"returnType\">java.lang.String</span> " 718 + "<span class=\"memberName\">test</span>" 719 + "(<span class=\"arguments\"><a href=\"RepTypeUseA.html\" " 720 + "title=\"annotation in typeannos\">@RepTypeUseA</a> <a href=" 721 + "\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 722 + "@RepTypeUseA</a> <a href=\"RepTypeUseB.html\" title=" 723 + "\"annotation in typeannos\">@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" " 724 + "title=\"annotation in typeannos\">@RepTypeUseB</a> " 725 + "RepeatingOnTypeParametersBoundsTypeArgumentsOnMethod<<a href=" 726 + "\"RepTypeUseA.html\" title=\"annotation in typeannos\">" 727 + "@RepTypeUseA</a> <a href=\"RepTypeUseA.html\" title=" 728 + "\"annotation in typeannos\">@RepTypeUseA</a> <a href=\"RepTypeUseB.html" 729 + "\" title=\"annotation in typeannos\">@RepTypeUseB</a> <a href=\"RepTypeUseB.html\" " 730 + "title=\"annotation in typeannos\">@RepTypeUseB</a> T> this)"); 731 732 checkOutput("typeannos/RepeatingOnVoidMethodDeclaration.html", true, 733 "<a href=\"RepMethodA.html\" title=\"annotation in typeannos\">@RepMethodA</a> " 734 + "<a href=\"RepMethodA.html\" title=\"annotation in typeannos\">@RepMethodA</a>\n" 735 + "<a href=\"RepMethodB.html\" title=\"annotation in typeannos\">@RepMethodB</a> " 736 + "<a href=\"RepMethodB.html\" title=\"annotation in typeannos\">@RepMethodB</a>\n" 737 + "</span><span class=\"returnType\">void</span> " 738 + "<span class=\"memberName\">test</span>()"); 739 } 740 } |