1 /* 2 * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved. 3 */ 4 package com.tc.process; 5 6 7 /** 8 * Simple main class used by {@link LinkedJavaProcessTest} that prints out some environment. 9 */ 10 public class LinkedJavaProcessTestMain4 { 11 12 public static void main(String[] args) { 13 System.out.println("DATA: ljpt.foo=" + System.getProperty("ljpt.foo")); 14 System.out.println("DATA: " + System.getProperty("user.dir")); 15 16 System.out.flush(); 17 } 18 19 } 20