PT #158345230: Added tests for javadoc from Eclipse client

This commit is contained in:
BoykoAlex
2018-06-18 15:47:45 -04:00
parent 19890b880a
commit 394afb69f8
11 changed files with 342 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package com.sample;
/**
* <b>Sample class</b>
*/
public class SampleJavadoc {
/**
* <b>Sample field</b>
*/
public int number;
/**
* <b>Sample getter</b>
*/
public int getNumber() {
return number;
}
}