voxforge.org
VoxForge Dev
Show
Ignore:
Timestamp:
09/09/07 22:04:40 (1 year ago)
Author:
kmaclean
Message:

Speech Submission System SnapShot? - works with AssetProxy? in WebGUI

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Trunk/SpeechSubmission/VFSpeechSubmission/java/src/org/voxforge/JavaVersionDisplayApplet.java

    r2280 r2290  
    22import java.applet.*; 
    33 import java.awt.*; 
    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  
     5public 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: " + 
    1012                                    System.getProperty("java.version")+ 
    1113                           " from "+System.getProperty("java.vendor")); 
    12      this.add(m_labVersionVendor); 
    13    
     14       this.add(m_labVersionVendor); 
     15      
    1416 }