2012-12-17 15:47:05 +00:00
|
|
|
/*
|
|
|
|
* @test /nodynamiccopyright/
|
2012-12-20 17:59:46 +00:00
|
|
|
* @bug 8004832
|
|
|
|
* @summary Add new doclint package
|
2012-12-17 15:47:05 +00:00
|
|
|
* @library ..
|
2015-05-21 18:41:04 +00:00
|
|
|
* @modules jdk.compiler/com.sun.tools.doclint
|
2012-12-17 15:47:05 +00:00
|
|
|
* @build DocLintTester
|
|
|
|
* @run main DocLintTester -ref ParaInPre.out ParaInPre.java
|
|
|
|
*/
|
|
|
|
|
|
|
|
// tidy: Warning: replacing <p> by <br>
|
|
|
|
// tidy: Warning: using <br> in place of <p>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* <pre>
|
|
|
|
* text
|
|
|
|
* <p>
|
|
|
|
* more text
|
|
|
|
* </pre>
|
|
|
|
*/
|
|
|
|
public class ParaInPre { }
|