Is it intention or accident that the Material.setXXXColor(Color3f color) methods don’t copy the color object but store its reference? So you mustn’t re-use the color object after having used one of the method calls…
It took me several debug sessions to detect this irregularity, which isn’t documentated in the Javadoc. 
This is valid for at least:
material.setAmbientColor(color)
material.setDiffuseColor(color)
material.setSpecularColor(color)
material.setEmissiveColor(color)
In other related method calls, Xith3d makes a copy of the color object, for example in:
ColoringAttributes colatt = new ColoringAttributes();
colatt.setColoringAttributes(color);
Btw, the new com.xith3d.utility.geometry.GeometryCreator does use objects by reference, too, but states so, for example in the method documentation it says [quote]Important - all methods in this class copy vecmath objects by reference, so please do NOT reuse them for filling data.
[/quote]
Which is good and important to know. 