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

org.swiftboot.fileconvert.Target Maven / Gradle / Ivy

There is a newer version: 2.4.8
Show newest version
package org.swiftboot.fileconvert;

/**
 * @author swiftech
 **/
public class Target {

    private String fileType;

    private ConvertCallback convertCallback;

    public Target() {
    }

    public Target(String fileType) {
        this.fileType = fileType;
    }

    public Target(String fileType, ConvertCallback convertCallback) {
        this.fileType = fileType;
        this.convertCallback = convertCallback;
    }

    public String getFileType() {
        return fileType;
    }

    public void setFileType(String fileType) {
        this.fileType = fileType;
    }

    public ConvertCallback getConvertCallback() {
        return convertCallback;
    }

    public void setConvertCallback(ConvertCallback convertCallback) {
        this.convertCallback = convertCallback;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy