/* version for use with JavaPlugin 1.2, 1.3, 1.4 */ import java.awt.*; import java.applet.*; import java.io.* ; import java.util.*; public class signedparmj2 extends Applet { FontMetrics fm; int xtab, ystep ; String nl ; // new line character String[] graphString = new String[20] ; int strings = 0; TextArea ta = new TextArea (25, 80); public void init() { this.setBackground(new Color(192,192,192)) ; add(ta) ; Properties sysprops = System.getProperties() ; Enumeration enprop = sysprops.propertyNames() ; String str = "" ; ta.setText("") ; while ( enprop.hasMoreElements() ) { String key = (String) enprop.nextElement() ; str = key+"\t"+sysprops.getProperty(key) ; ta.append(str + "\n"); } } }