|
static void | main (String[] args) |
|
Definition at line 3 of file BoxTestDrive.java.
◆ main()
static void BoxTestDrive.main |
( |
String[] | args | ) |
|
|
inlinestatic |
Definition at line 4 of file BoxTestDrive.java.
4 {
8
9 try {
10 FileOutputStream fs = new FileOutputStream("Box.sav");
11 ObjectOutputStream os = new ObjectOutputStream(fs);
12 os.writeObject(box);
13 os.close();
14 } catch (Exception ex) {
15 ex.printStackTrace();
16 }
17 }
The documentation for this class was generated from the following file: