OnJava8-Examples/objects/Documentation1.java

9 lines
174 B
Java
Raw Normal View History

2015-09-07 11:44:36 -06:00
// objects/Documentation1.java
2015-06-15 17:47:35 -07:00
/** A class comment */
public class Documentation1 {
/** A field comment */
public int i;
/** A method comment */
public void f() {}
2015-09-07 11:44:36 -06:00
}