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

com.tw.go.plugin.model.ModifiedFile Maven / Gradle / Ivy

There is a newer version: 2.0
Show newest version
package com.tw.go.plugin.model;

public class ModifiedFile {
    private String fileName;
    private String action;

    public ModifiedFile(String fileName, String action) {
        this.fileName = fileName;
        this.action = action;
    }

    public String getFileName() {
        return fileName;
    }

    public String getAction() {
        return action;
    }

    @Override
    public String toString() {
        return "ModifiedFile{" +
                "fileName='" + fileName + '\'' +
                ", action='" + action + '\'' +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy