< prev index next >

test/jdk/javadoc/doclet/testModules/moduleB/module-info.java

Print this page

        

@@ -22,20 +22,20 @@
  * or visit www.oracle.com if you need additional information or have any
  * questions.
  */
 
 /**
-  * This is a test description for the module2 module. Search word {@index search_word} with no description.
+  * This is a test description for the moduleB module. Search word {@index search_word} with no description.
   *
   * @deprecated This module is deprecated using just the javadoc tag.
   */
-@testpkgmdl2.AnnotationType(optional="Module Annotation", required=2016)
-@testpkgmdl2.AnnotationTypeUndocumented(optional="Module Annotation", required=2016)
-module module2 {
-    exports testpkgmdl2;
+@testpkgmdlB.AnnotationType(optional="Module Annotation", required=2016)
+@testpkgmdlB.AnnotationTypeUndocumented(optional="Module Annotation", required=2016)
+module moduleB {
+    exports testpkgmdlB;
 
-    exports testpkg2mdl2 to module1;
+    exports testpkg2mdlB to moduleA;
 
-    uses testpkgmdl2.TestClassInModule2;
+    uses testpkgmdlB.TestClassInModuleB;
 
-    provides testpkg2mdl2.TestInterfaceInModule2 with testpkgmdl2.TestClassInModule2;
+    provides testpkg2mdlB.TestInterfaceInModuleB with testpkgmdlB.TestClassInModuleB;
 }
< prev index next >