8004832: Add new doclint package

Reviewed-by: mcimadamore
This commit is contained in:
Jonathan Gibbons 2012-12-17 07:47:05 -08:00
parent c5acce4569
commit 4a3e904c6e
100 changed files with 4459 additions and 28 deletions

View file

@ -0,0 +1,15 @@
/*
* @test /nodynamiccopyright/
* @build DocLintTester
* @run main DocLintTester -Xmsgs:-syntax EmptySerialDataTest.java
* @run main DocLintTester -Xmsgs:syntax -ref EmptySerialDataTest.out EmptySerialDataTest.java
*/
import java.io.ObjectOutputStream;
import java.io.Serializable;
/** . */
public class EmptySerialDataTest implements Serializable {
/** @serialData */
private void writeObject(ObjectOutputStream s) { }
}