org.csveed.report.RowPart Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of csveed Show documentation
Show all versions of csveed Show documentation
Java toolkit for mapping CSV-to-Bean mapping and vice versa. Redirection to Introduction in 5 seconds!
package org.csveed.report;
public class RowPart {
private String token;
private boolean highlight = false;
public RowPart(String token, boolean highlight) {
this.token = token;
this.highlight = highlight;
}
public String getToken() {
return token;
}
public boolean isHighlight() {
return highlight;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy