
org.zkoss.jsf.zul.Hbox Maven / Gradle / Ivy
The newest version!
/* Hbox.java
{{IS_NOTE
Purpose:
Description:
History:
2007/08/16 18:10:17 , Created by Dennis.Chen
}}IS_NOTE
Copyright (C) 2007 Potix Corporation. All Rights Reserved.
{{IS_RIGHT
This program is distributed under GPL Version 2.0 in the hope that
it will be useful, but WITHOUT ANY WARRANTY.
}}IS_RIGHT
*/
package org.zkoss.jsf.zul;
import org.zkoss.jsf.zul.impl.BranchComponent;
import org.zkoss.zk.ui.Component;
/**
* Hbox is a JSF component implementation for org.zkoss.zul.Hbox,
*
* This component should be declared nested under {@link org.zkoss.jsf.zul.Page}.
*
* To know more ZK component features you can refer to http://www.zkoss.org/
*
* @author Dennis.Chen
*
*/
public class Hbox extends BranchComponent {
protected Component newComponent(Class use) throws Exception {
return (Component) (use==null?new org.zkoss.zul.Hbox():use.newInstance());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy