internal documentation related to ExDB & apps around
everybody can participate, topics will be discussed and subsequently agreed/realized
shall contain:

what version of Java to use? 1.6?
-
the root package is swing.exdb
common .java
file header (see example)
use of Java Logging
API (see example)
JavaDoc/comments/identifiers are preferably in English
suggested source indentation - 1 level == 4 spaces (no tabs please)
line wrapping - around 100 chars per line
/*
* ClassName.java
*
* Copyright (C) 2006-2012 Software Engineering Group (SWING),
* Czech Technical University in Prague, FEE+FIT,
* Departments of Computer Science & Software Engineering
*
* All rights reserved.
*
*
* Part of the ExDB project (http://exdb.fit.cvut.cz)
*
*/
package swing.exdb.sample;
import java.util.logging.Logger;
/**
* Some class comment ...
*/
public class Main {
...
/** The logging facility */
private static Logger logger = Logger.getLogger(Main.class.getName());
...
}