I have an Aspose.Total license. I’m using it to license two products and I’m following the directions here https://docs.aspose.com/pdf/java/licensing/#using-multiple-products-from-aspose
I do
com.aspose.pdf.License pdfLicense = new com.aspose.pdf.License();
pdfLicense.setLicense(“Aspose.Total.Java.lic”);
com.aspose.cells.License cellsLicense = new com.aspose.cells.License();
cellsLicense.setLicense(“Aspose.Total.Java.lic”);
Now I want to check if the licenses are set.
com.aspose.cells.License.isLicenseSet() is fine but
com.aspose.pdf.License.isLicenseSet() shows an error.
Looking into the source I see that the License under package com.aspose.cells has a stub
public static boolean isLicenseSet() {
where as the License under package com.aspose.pdf does not.
Why is there this difference in the methods offered by the two Licenses?
Michael