Specifications
Sun Services
Java™ Programming Language
Module 12, slide 17 of 18
Copyright 2005 Sun Microsystems, Inc. All Rights Reserved. Sun Services, Revision F
Controlling Visual Aspects
Commands to control visual aspects of the GUI include:
• Colors:
setForeground()
setBackground()
• Example:
Color purple = new Color(255, 0, 255);
Button b = new Button(“Purple”);
b.setBackground(purple);










