com.erigir.wrench.drigo.RenameMapping Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wrench-drigo Show documentation
Show all versions of wrench-drigo Show documentation
An extensible library for transforming files
package com.erigir.wrench.drigo;
/**
* Created by chrweiss on 3/8/15.
*/
public class RenameMapping {
private String src;
private String dst;
public String getSrc() {
return src;
}
public void setSrc(String src) {
this.src = src;
}
public String getDst() {
return dst;
}
public void setDst(String dst) {
this.dst = dst;
}
}