/** * Este arquivo é parte do Biblivre3. * * Biblivre3 é um software livre; você pode redistribuí-lo e/ou * modificá-lo dentro dos termos da Licença Pública Geral GNU como * publicada pela Fundação do Software Livre (FSF); na versão 3 da * Licença, ou (caso queira) qualquer versão posterior. * * Este programa é distribuído na esperança de que possa ser útil, * mas SEM NENHUMA GARANTIA; nem mesmo a garantia implícita de * MERCANTIBILIDADE OU ADEQUAÇÃO PARA UM FIM PARTICULAR. Veja a * Licença Pública Geral GNU para maiores detalhes. * * Você deve ter recebido uma cópia da Licença Pública Geral GNU junto * com este programa, Se não, veja em <http://www.gnu.org/licenses/>. * * @author Alberto Wagner <alberto@biblivre.org.br> * @author Danniel Willian <danniel@biblivre.org.br> * */ package biblivre3.cataloging.holding; public class LabelConfigDTO { private int offset; private float width; private float height; private int columns; private int rows; public int getColumns() { return columns; } public void setColumns(int columns) { this.columns = columns; } public float getHeight() { return height; } public void setHeight(float height) { this.height = height; } public int getOffset() { return offset; } public void setOffset(int offset) { this.offset = offset; } public int getRows() { return rows; } public void setRows(int rows) { this.rows = rows; } public float getWidth() { return width; } public void setWidth(float width) { this.width = width; } }