Writes the contents of the PlayerCharacter to a file. author: Thomas Behr 11-03-02 @param aPC the PlayerCharacter to write @param filename the name of the output file @throws FileNotFoundException the file not found exception @throws IOException Signals that an I/O exception has occur
(PlayerCharacter aPC, String filename)
| 95 | * @throws IOException Signals that an I/O exception has occurred. |
| 96 | */ |
| 97 | public final void write(PlayerCharacter aPC, String filename) throws FileNotFoundException, IOException |
| 98 | { |
| 99 | write(aPC, null, null, filename); |
| 100 | } |
| 101 | |
| 102 | /** |
| 103 | * Writes the contents of the PlayerCharacter to a file. |
nothing calls this directly
no test coverage detected