[tests] message texts in Javadoc highlighting tests

This commit is contained in:
Roman Shevchenko
2017-04-07 18:48:45 +02:00
parent a31c85b322
commit 2a47148d94
22 changed files with 100 additions and 104 deletions

View File

@@ -1,9 +1,9 @@
class Test {
public static final int A = 1;
public static final int A = 1;
/**
* Value is {@value <error>#A</error>}
* @param ppp .
*/
public void i(int ppp) {}
/**
* Value is {@value <error descr="@value tag may not have any arguments when JDK 1.4 or earlier is used">#A</error>}
* @param ppp .
*/
public void i(int ppp) {}
}