All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jsimpledb.cli.cmd.OutputFileParser Maven / Gradle / Ivy


/*
 * Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
 */

package org.jsimpledb.cli.cmd;

import java.io.File;

import org.jsimpledb.parse.ParseException;
import org.jsimpledb.util.ParseContext;

class OutputFileParser extends AbstractFileParser {

    @Override
    protected boolean validateFile(File file, boolean complete) {
        return !file.isDirectory() && (file.exists() || !complete);
    }

    @Override
    protected ParseException createParseException(ParseContext ctx, File file) {
        return new ParseException(ctx, "can't write to file `" + file + "'");
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy