Planned releases appear in the middle of every quarter (middle of February, May, August, November).
It might occur that we publish a release out of schedule on request of one of our exploiters as well.
A release is a code level that has been intensively tested and is supported. Releases are the
only origins for maintenance branches.
All patches are committed to the "experimental" branch first. The code in this branch is the most
active, but it hasn't undergone a community review and is therefore unapproved.
Once a patch has been approved in the community review it will be merged into the "HEAD" branch. When
a new release is published it represents the content of the "HEAD" branch at the release date. Of course,
all releases have a corresponding version tag in CVS.
We use the following naming conventions in our code (not all sources have been migrated to these conventions yet):
entity | naming | sample |
---|---|---|
class, interface | mixed-case, first letter uppercase | class HttpClient |
method | mixed-case, first letter lowercase | HttpClient getClient() |
parameter | mixed-case, prefix 'p' | void setClient(HttpClient pClient) |
local variable | mixed-case, first letter lowercase | int loopCounter |
field | mixed-case, prefix 'i' | String iName |
static field | mixed-case, prefix 'c' | static String cName |
static final field | uppercase | static final String NAME = "SBLIM" |
Access to members is not qualified with "this." the prefixing usually does a good job avoiding hidden members. We aim at warning free code, but haven't met that goal yet. All code is REQUIRED to compile on IBM/SUN Java 1.4.x/1.5.x and GCJ 4.1. Therefore Java 1.5 constructs are not allowed.
Use of default or protected visibility is discouraged. Fields should be private, provide getters and setters for public or subclass access. External and internal classes/interfaces should be clearly seperated by using "*.internal" packages (realized in slp client, not yet in CIM client !).
Javadoc is mandatory for public API of a class.
Copyright © 2005, 2011 IBM Corporation. All Rights Reserved.