Home | History | Annotate | Download | only in util

Lines Matching refs:fos

42         FileOutputStream fos = null;
57 fos = new FileOutputStream("testFields.ser");
58 oos = new ObjectOutputStream(fos);
67 if (fos != null) fos.close();
72 fos = new FileOutputStream("testFieldsDeprecated.ser");
73 oos = new ObjectOutputStream(fos);
82 if (fos != null) fos.close();
87 fos = new FileOutputStream("testFieldsDefaulted.ser");
88 oos = new ObjectOutputStream(fos);
97 if (fos != null) fos.close();