String szText = super.getInfo( obj );
szText = insertSectionBreak( szText );
szText += "Coloring Attributes\r\n";
ColoringAttributes colAttribs = (ColoringAttributes) obj;
Color3f color = new Color3f();
colAttribs.getColor( color );
szText += "Color: " + color.toString() + "\r\n";
szText += "Shade Model: " + colAttribs.getShadeModel() + "\r\n";
return szText;