org.bidib.jbidibc.experimental.excel.model.CvData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbidibc-experimental Show documentation
Show all versions of jbidibc-experimental Show documentation
jBiDiB jbidibc Experimental POM
package org.bidib.jbidibc.experimental.excel.model;
public class CvData {
private String cvName;
private String cvValue;
private String cvDescription;
/**
* @return the cvName
*/
public String getCvName() {
return cvName;
}
/**
* @param cvName
* the cvName to set
*/
public void setCvName(String cvName) {
this.cvName = cvName;
}
/**
* @return the cvValue
*/
public String getCvValue() {
return cvValue;
}
/**
* @param cvValue
* the cvValue to set
*/
public void setCvValue(String cvValue) {
this.cvValue = cvValue;
}
/**
* @return the cvDescription
*/
public String getCvDescription() {
return cvDescription;
}
/**
* @param cvDescription
* the cvDescription to set
*/
public void setCvDescription(String cvDescription) {
this.cvDescription = cvDescription;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy