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

com.vmlens.setup.EventDirectoryAndArgLine Maven / Gradle / Ivy

The newest version!
package com.vmlens.setup;

import java.io.File;

public class EventDirectoryAndArgLine {

    private final File eventDirectory;
    private final String argLine;

    public EventDirectoryAndArgLine(File eventDirectory, String argLine) {
        this.eventDirectory = eventDirectory;
        this.argLine = argLine;
    }

    public File eventDirectory() {
        return eventDirectory;
    }

    public String argLine() {
        return argLine;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy