import java.util.*;

/**
 * a tiny example program to show the properties that java can access
 * @author Mitch Fincher
 */
///////////////////////////////////////////////////////////////////
public class showProperties  {
///////////////////////////////////////////////////////////////////

///////////////////////////////////////////////////////////////////
  public static void main(String args[])
///////////////////////////////////////////////////////////////////
  {
    showProperties app = new showProperties();

    System.out.println("inside " + System.getProperty("java.version"));
    Properties property = System.getProperties();
    String propertyElement="";

    for (Enumeration e = property.propertyNames() ; e.hasMoreElements() ;) {
      System.out.print(propertyElement = (String)e.nextElement());
      System.out.println(" = " + System.getProperty(propertyElement));
    }
    

  } // main()


} // class showProperties
