All code associated with the Echo framework hosted on this site follows a slightly modified version of Sun's Code Conventions for the Java Programming Language. The following specific modifications are used:
Sample code:
public class Alpha extends Bravo
implements Charlie, Delta {
private String[] juliet;
private int kilo;
public void tango(int uniform) {
System.err.println(uniform + kilo);
}
public String zulu(String yankee, int xray, boolean whiskey,
String victor)
throws OtherVendorFouledUpException, FooException {
switch (xray) {
case 4:
case 5:
return "Yep!";
default:
return "Nope!";
}
}
}