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