Examples of GameExporter


Examples of com.barrybecker4.game.common.persistence.GameExporter

     * @param ae assertion error if an error prompted this save. Null if there was no error.
     */
    public void saveGame(File file, AssertionError ae) {
        String fPath = file.getAbsolutePath();
        fPath = SgfFileFilter.addExtIfNeeded(fPath, SgfFileFilter.SGF_EXTENSION);
        GameExporter exporter = controller_.getExporter();
        exporter.saveToFile(fPath, ae);
    }
View Full Code Here

Examples of com.barrybecker4.game.common.persistence.GameExporter

        File file = chooser.getSelectedFile();
        if ( file != null && state == JFileChooser.APPROVE_OPTION ) {
            // if it does not have the .sgf extension already then add it
            String fPath = file.getAbsolutePath();
            fPath = SgfFileFilter.addExtIfNeeded(fPath, SgfFileFilter.SGF_EXTENSION);
            GameExporter exporter = controller_.getExporter();
            exporter.saveToFile(fPath, ae);
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.