[java] recognizes @moduleGraph tag

This commit is contained in:
Roman Shevchenko
2017-04-07 18:53:56 +02:00
parent fae23a3f61
commit 0588a4d12c
4 changed files with 15 additions and 7 deletions

View File

@@ -1,8 +1,9 @@
class Test {
/**
* @apiNote note1
* @implNote implNote
* @implSpec implSpec
*/
public void i() {}
/**
* @apiNote note1
* @implNote implNote
* @implSpec implSpec
* <warning descr="Tag 'moduleGraph' is not allowed here">@moduleGraph</warning>
*/
public void i() {}
}

View File

@@ -0,0 +1,5 @@
/**
* @moduleGraph
* @since 9
*/
module Test { }