For static methods in Java, the parameter cannot have the same name as a global static variable. Is there a convention for naming the parameter? ...just a curiosity.
private static volatile int metBetYetPetLetJet = 8675309;
public static void setMetBetYetPetLetJet (int metBetYetPetLetJet0) {
metBetYetPetLetJet = metBetYetPetLetJet0;
}