You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

These are the code style conventions used in the project.

IDE Setups

IDE settings can be found in fcrepo4/etc in the project source.

Eclipse settings are here: fcrepo4/etc/eclipse-prefs

 

Your Name

In your class or type template, make sure the comment includes an author tag with your full name:

/**
 * @author Joe Developer
*/
public class MyClass

All Indents are tabs

Blocks and Conditions

Conditions are their expressions are separated by a space:

if (myVar != null) {

    return;

}

Line Length

Maximum length of lines is 80 characters.

 

  • No labels