org.xhtmlrenderer.demo.browser.ScaleFactor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flying-saucer-examples Show documentation
Show all versions of flying-saucer-examples Show documentation
Misc. Flying Saucer example code. It is not deployed with a release.
package org.xhtmlrenderer.demo.browser;
public record ScaleFactor(double factor, String zoomLabel) {
public static final double PAGE_WIDTH = -2.0d;
public static final double PAGE_HEIGHT = -3.0d;
public static final double PAGE_WHOLE = -4.0d;
@Override
public String toString() {
return zoomLabel();
}
public boolean isNotZoomed() {
return factor() == 1d;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy