Hi,
I'm getting a checkstyle warning for a simple class which looks like:
package tools.interprocess;
/**
* Class for testing RMI.
* @author spinth
*
*/
public final class RMITest {
/**
* Private constructor.
*/
private RMITest() {
}
/**
* Main method.
* @param args User arguments
*/
public static void main(final String[] args) {
}
}
The warning message says: Missing package-info.java file
I really couldn't figure out what this means and how I can fix it. Do I have to add something to the source tree?
I'm using Eclipse for development and Eclipse-cs as my checkstyle plug-in.
Thanks.
Edited by: spinth on Apr 15, 2010 12:37 PM