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

com.openhtmltopdf.render.OperatorSetClip 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.render;

import java.awt.Shape;

/**
 * A display list item that indicates the output device needs to expand
 * the clip at this point.
 */
public class OperatorSetClip implements DisplayListItem {
	private final Shape setClip;
	
	public OperatorSetClip(Shape setClip) {
		this.setClip = setClip;
	}
	
	public Shape getSetClipShape() {
		return this.setClip;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy