| 4 | | public class JavaVersionDisplayApplet extends Applet |
|---|
| 5 | | { private Label m_labVersionVendor; |
|---|
| 6 | | public JavaVersionDisplayApplet() //constructor |
|---|
| 7 | | { Color colFrameBackground = Color.pink; |
|---|
| 8 | | this.setBackground(colFrameBackground); |
|---|
| 9 | | m_labVersionVendor = new Label (" Java Version: " + |
|---|
| | 4 | |
|---|
| | 5 | public class JavaVersionDisplayApplet extends Applet { |
|---|
| | 6 | private Label m_labVersionVendor; |
|---|
| | 7 | |
|---|
| | 8 | public JavaVersionDisplayApplet() { //constructor |
|---|
| | 9 | Color colFrameBackground = Color.lightGray; |
|---|
| | 10 | this.setBackground(colFrameBackground); |
|---|
| | 11 | m_labVersionVendor = new Label (" Java Version: " + |
|---|