forked from mvolkmann/mvolkmann.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSystemUtil.java.html
More file actions
33 lines (29 loc) · 901 Bytes
/
Copy pathSystemUtil.java.html
File metadata and controls
33 lines (29 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR.html1/DTD.html1-transitional.dtd">
<html xmlns="http://www.w3.org/1999.html">
<head>
<title>SystemUtil.java</title>
<link rel="stylesheet" type="text/css" href="../../common.css"/>
</head>
<body>
<h2>SystemUtil.java</h2>
<pre><div class="code">package com.ociweb.lang;
/**
* To use the static methods of this class directly in another class,
* as if the methods were defined in that class,
* use a Java 5 static import as follows.
*
* import static com.ociweb.lang.SystemUtil.*;
*/
public class SystemUtil {
public static void out(String text) {
System.out.println(text);
}
}</div></pre>
<hr/>
<p style="text-align:center">
Copyright © 2007 Object Computing, Inc. All rights reserved.
</p>
</body>
</html>