com.alphasystem.docx4j.builder.wml.table.ColumnInput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of open-xml-builder Show documentation
Show all versions of open-xml-builder Show documentation
Alpha system commons library
package com.alphasystem.docx4j.builder.wml.table;
public final class ColumnInput {
private final String columnName;
private final double columnWidth;
public ColumnInput(String columnName, double columnWidth) {
this.columnName = columnName;
this.columnWidth = columnWidth;
}
public String getColumnName() {
return columnName;
}
public double getColumnWidth() {
return columnWidth;
}
@Override
public String toString() {
return "ColumnInput {" +
"columnName='" + columnName + '\'' +
", columnWidth=" + columnWidth +
" }";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy