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

org.zkoss.zk.ui.sys.PageRenderer Maven / Gradle / Ivy

There is a newer version: 10.0.0-jakarta
Show newest version
/* PageRenderer.java

	Purpose:
		
	Description:
		
	History:
		Tue Oct 14 16:32:46     2008, Created by tomyeh

Copyright (C) 2008 Potix Corporation. All Rights Reserved.

{{IS_RIGHT
	This program is distributed under LGPL Version 2.1 in the hope that
	it will be useful, but WITHOUT ANY WARRANTY.
}}IS_RIGHT
*/
package org.zkoss.zk.ui.sys;

import java.io.Writer;
import java.io.IOException;

import org.zkoss.zk.ui.Page;

/**
 * The page render used to render a page.
 * It is called by {@link PageCtrl#redraw}.
 *
 * @author tomyeh
 * @since 3.5.1
 */
public interface PageRenderer {
	/** Renders the page.
	 *
	 * @param out the output writer to put the content to (never null).
	 */
	public void render(Page page, Writer out) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy