BarcodeGenerationParams.java 2.77 KB
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.xfa.pmp.common;

public class BarcodeGenerationParams {
    private String symbology;
    private int version;
    private double width;
    private double height;
    private int resolution;
    private String caption;
    private int growthFlags;
    private int cellSize;
    private int errorCorrection;
    private int xSymbolWidth;
    private int xSymbolHeight;
    private int numCodeWordCol;
    private int numCodeWordRow;
    private int eccLevel;

    public String getSymbology() {
        return this.symbology;
    }

    public void setSymbology(String symbology) {
        this.symbology = symbology;
    }

    public int getVersion() {
        return this.version;
    }

    public void setVersion(int version) {
        this.version = version;
    }

    public double getWidth() {
        return this.width;
    }

    public void setWidth(double width) {
        this.width = width;
    }

    public double getHeight() {
        return this.height;
    }

    public void setHeight(double height) {
        this.height = height;
    }

    public int getResolution() {
        return this.resolution;
    }

    public void setResolution(int resolution) {
        this.resolution = resolution;
    }

    public String getCaption() {
        return this.caption;
    }

    public void setCaption(String caption) {
        this.caption = caption;
    }

    public int getGrowthFlags() {
        return this.growthFlags;
    }

    public void setGrowthFlags(int growthFlags) {
        this.growthFlags = growthFlags;
    }

    public int getCellSize() {
        return this.cellSize;
    }

    public void setCellSize(int cellSize) {
        this.cellSize = cellSize;
    }

    public int getErrorCorrection() {
        return this.errorCorrection;
    }

    public void setErrorCorrection(int errorCorrection) {
        this.errorCorrection = errorCorrection;
    }

    public int getXSymbolWidth() {
        return this.xSymbolWidth;
    }

    public void setXSymbolWidth(int symbolWidth) {
        this.xSymbolWidth = symbolWidth;
    }

    public int getXSymbolHeight() {
        return this.xSymbolHeight;
    }

    public void setXSymbolHeight(int symbolHeight) {
        this.xSymbolHeight = symbolHeight;
    }

    public int getNumCodeWordCol() {
        return this.numCodeWordCol;
    }

    public void setNumCodeWordCol(int numCodeWordCol) {
        this.numCodeWordCol = numCodeWordCol;
    }

    public int getNumCodeWordRow() {
        return this.numCodeWordRow;
    }

    public void setNumCodeWordRow(int numCodeWordRow) {
        this.numCodeWordRow = numCodeWordRow;
    }

    public int getEccLevel() {
        return this.eccLevel;
    }

    public void setEccLevel(int eccLevel) {
        this.eccLevel = eccLevel;
    }
}