alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

package p;
interface A{
	/** method m javadoc comment */
	void m();

	/** field I javadoc comment */
	int I= 9;

	/* method m1 regular comment */
	void m1();

	/* field i1 regular comment */
	int I1= 9;

	// method m2 line comment
	void m2();

	// field i2 line comment
	int I2= 9;

	void m4(); /* method m4 regular comment */

	int I4= 9; /* field i4 regular comment */

	void m5(); // method m5 line comment

	int I5= 9; // field i5 line comment
}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.