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

com.github.cleydyr.dart.command.parameter.ParameterPair Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package com.github.cleydyr.dart.command.parameter;

import java.nio.file.Path;

public class ParameterPair {
    Path inputPath;
    Path outputPath;

    public ParameterPair(Path inputPath, Path outputPath) {
        super();

        this.inputPath = inputPath;
        this.outputPath = outputPath;
    }

    public Path getInputPath() {
        return inputPath;
    }

    public Path getOutputPath() {
        return outputPath;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy