|
Revision 2290, 0.5 kB
(checked in by kmaclean, 1 year ago)
|
Speech Submission System SnapShot? - works with AssetProxy? in WebGUI
|
| Line | |
|---|
| 1 |
package org.voxforge; |
|---|
| 2 |
import java.applet.*; |
|---|
| 3 |
import java.awt.*; |
|---|
| 4 |
|
|---|
| 5 |
public class JavaVersionDisplayApplet extends Applet { |
|---|
| 6 |
private Label m_labVersionVendor; |
|---|
| 7 |
|
|---|
| 8 |
public JavaVersionDisplayApplet() { |
|---|
| 9 |
Color colFrameBackground = Color.lightGray; |
|---|
| 10 |
this.setBackground(colFrameBackground); |
|---|
| 11 |
m_labVersionVendor = new Label (" Java Version: " + |
|---|
| 12 |
System.getProperty("java.version")+ |
|---|
| 13 |
" from "+System.getProperty("java.vendor")); |
|---|
| 14 |
this.add(m_labVersionVendor); |
|---|
| 15 |
} |
|---|
| 16 |
} |
|---|