Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Jetty/Contributor/Coding Standards"

m
Line 3: Line 3:
 
==Code Formatting==
 
==Code Formatting==
  
Jetty uses the code formatting as specified in the following project.
+
Jetty uses the code formatting the following project specifies.
  
 
* http://git.eclipse.org/c/jetty/org.eclipse.jetty.admin.git/tree/jetty-eclipse-java-format.xml
 
* http://git.eclipse.org/c/jetty/org.eclipse.jetty.admin.git/tree/jetty-eclipse-java-format.xml
Line 15: Line 15:
 
==Code Conventions==
 
==Code Conventions==
  
The following is an example of the Java formatting and naming styles to be applied to Jetty:
+
The following is an example of the Java formatting and naming styles to apply to Jetty:
  
 
<source lang="java">
 
<source lang="java">

Revision as of 15:19, 24 February 2012


Code Formatting

Jetty uses the code formatting the following project specifies.

Code Templates

Jetty specifies the following code templates for use by the project developers.

Code Conventions

The following is an example of the Java formatting and naming styles to apply to Jetty:

import some.exact.ClassName;      // GOOD
import some.wildcard.package.*;   // BAD!
 
package org.always.have.a.package;
 
/* --------------------------------------------------------- */
/** Always have some javadoc
 */
class MyClassName
{
    // indent by 4 spaces.
    // use spaced to indent
    // The code must format OK with default tabsize of 8.
 
    private static final int ALL_CAPS_FOR_PUBLIC_CONSTANTS=1;
 
    // Field prefixed with __ for static of _ for normal fields.
    // This convention is no longer mandatory, but any given
    // class should either consistently use this style or not.
    private static String __staticField;
    private Object _privateField;
 
 
    // use getters and setters rather than public fields.
    public void setPrivateField(Object privateField)
    {
        _privateField=privateField;
    }
 
    public Object getPrivateField()
    {
        return _privateField;
    }
 
    public void doSomething()
        throws SomeException
    {
        Object local_variable = _privateField;
        if (local_variable==null)
        {
             // do Something
        }
    }
}

Copyright © Eclipse Foundation, Inc. All Rights Reserved.