Differences between revisions 1 and 18 (spanning 17 versions)
Revision 1 as of 2005-02-11 02:10:20
Size: 1403
Comment:
Revision 18 as of 2014-04-24 08:32:22
Size: 464
Editor: MHZK
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
== Coding Standards for Java Code in Jython ==
When in doubt follow the Sun Java standards:

http://java.sun.com/docs/codeconv/

=== Example ===
{{{

package org.jython.blah;

import org.jython.blah.BlahBlah;

/**
 * Class description goes here.
 * @author Firstname Lastname
 */
public class Blah extends SomeClass {
    /* A class implementation comment can go here. */

    /** classVar1 documentation comment */
    public static int classVar1;

    /**
     * classVar2 documentation comment that happens to be
     * more than one line long
     */
    private static Object classVar2;

    /** instanceVar1 documentation comment */
    public Object instanceVar1;

    /** instanceVar2 documentation comment */
    protected int instanceVar2;

    /** instanceVar3 documentation comment */
    private Object[] instanceVar3;

    /**
     * ...constructor Blah documentation comment...
     */
    public Blah() {
        // ...implementation goes here...
    }

    /**
     * ...method doSomething documentation comment...
     */
    public void doSomething() {
        // ...implementation goes here...
    }

    /**
     * ...method doSomethingElse documentation comment...
     * @param someParam description
     */
    public void doSomethingElse(Object someParam) {
        // ...implementation goes here...
    }
}
}}}
I'm a 30 years old and study at the university (Physics).<<BR>>
In my free time I teach myself Russian. I've been there and look forward to returning sometime in the future. I like to read, preferably on my kindle. I really love to watch Breaking Bad and The Big Bang Theory as well as documentaries about nature. I like Canoeing.<<BR>>
<<BR>>
Here is my web site: [[http://www.amazon.com/Crystal-Quest-Reverse-Osmosis-Filter/dp/B00A2C1Y92/|ro water system]]

I'm a 30 years old and study at the university (Physics).
In my free time I teach myself Russian. I've been there and look forward to returning sometime in the future. I like to read, preferably on my kindle. I really love to watch Breaking Bad and The Big Bang Theory as well as documentaries about nature. I like Canoeing.

Here is my web site: ro water system

CodingStandards (last edited 2018-03-31 19:06:54 by JeffAllen)