All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jpedal.examples.viewer.gui.FXAdditionalData Maven / Gradle / Ivy

/*
 * ===========================================
 * Java Pdf Extraction Decoding Access Library
 * ===========================================
 *
 * Project Info:  http://www.idrsolutions.com
 * Help section for developers at http://www.idrsolutions.com/support/
 *
 * (C) Copyright 1997-2017 IDRsolutions and Contributors.
 *
 * This file is part of JPedal/JPDF2HTML5
 *
 @LICENSE@
 *
 * ---------------
 * FXAdditionalData.java
 * ---------------
 */

package org.jpedal.examples.viewer.gui;

/**
 * @author markee
 */
public class FXAdditionalData {

    private int[] type;
    private Object[] obj;

    public int[] getType() {
        return type;
    }

    public void setType(final int[] type) {
        this.type = type;
    }

    public Object[] getObj() {
        return obj;
    }

    public void setObj(final Object[] obj) {
        this.obj = obj;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy