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

com.openhtmltopdf.outputdevice.helper.NullUserInterface Maven / Gradle / Ivy

Go to download

Open HTML to PDF is a CSS 2.1 renderer written in Java. This artifact contains the core rendering and layout code.

The newest version!
package com.openhtmltopdf.outputdevice.helper;

import org.w3c.dom.Element;

import com.openhtmltopdf.extend.UserInterface;

public class NullUserInterface implements UserInterface {
	public boolean isHover(Element e) {
		return false;
	}

	public boolean isActive(Element e) {
		return false;
	}

	public boolean isFocus(Element e) {
		return false;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy