MCPcopy Create free account
hub / github.com/PCGen/pcgen / write

Method write

code/src/java/pcgen/io/IOHandler.java:97–100  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 1

createBackupForFileMethod · 0.95

Tested by

no test coverage detected