com.princexml.wrapper.FileAttachment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prince-java-wrapper Show documentation
Show all versions of prince-java-wrapper Show documentation
This library contains class files that provide a Java interface to Prince.
The newest version!
/*
* Copyright (C) 2021 YesLogic Pty. Ltd.
* All rights reserved.
*/
package com.princexml.wrapper;
final class FileAttachment {
final String url;
final String filename;
final String description;
FileAttachment(String url) {
this(url, null, null);
}
FileAttachment(String url, String filename, String description) {
this.url = url;
this.filename = filename;
this.description = description;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy