forked from teddyzhang1976/ThinkInJava4thSampleCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDisplayEnvironment.java
More file actions
21 lines (20 loc) · 665 Bytes
/
DisplayEnvironment.java
File metadata and controls
21 lines (20 loc) · 665 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//: swt/DisplayEnvironment.java
package swt; /* Added by Eclipse.py */
import swt.util.*;
import org.eclipse.swt.*;
import org.eclipse.swt.widgets.*;
import org.eclipse.swt.layout.*;
import java.util.*;
public class DisplayEnvironment implements SWTApplication {
public void createContents(Composite parent) {
parent.setLayout(new FillLayout());
Text text = new Text(parent, SWT.WRAP | SWT.V_SCROLL);
for(Map.Entry entry: System.getenv().entrySet()) {
text.append(entry.getKey() + ": " +
entry.getValue() + "\n");
}
}
public static void main(String [] args) {
SWTConsole.run(new DisplayEnvironment(), 800, 600);
}
} ///:~