Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/bundles/org.eclipse.wst.sse.core/handyStuff.jpage')
-rw-r--r--core/bundles/org.eclipse.wst.sse.core/handyStuff.jpage1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/bundles/org.eclipse.wst.sse.core/handyStuff.jpage b/core/bundles/org.eclipse.wst.sse.core/handyStuff.jpage
new file mode 100644
index 0000000000..6447b4e26a
--- /dev/null
+++ b/core/bundles/org.eclipse.wst.sse.core/handyStuff.jpage
@@ -0,0 +1 @@
+ java.util.Enumeration enum = System.getProperties().keys(); String key = null; while (enum.hasMoreElements()){ key = (String)enum.nextElement(); System.out.print(key); for (int i =0;i<(30-key.length());i++)System.out.print(" "); System.out.println("->"+System.getProperty(key)); } \ No newline at end of file

Back to the top