com.jsftoolkit.base.DataIteratorSpec Maven / Gradle / Ivy
Go to download
The core classes for the JSF Toolkit Component Framework. Includes all
framework base and utility classes as well as component
kick-start/code-generation and registration tools.
Also includes some classes for testing that are reused in other projects.
They cannot be factored out into a separate project because they are
referenced by the tests and they reference this code (circular
dependence).
The newest version!
package com.jsftoolkit.base;
import javax.faces.component.UIComponent;
import javax.faces.component.UIData;
import com.jsftoolkit.gen.info.PropertyInfo;
/**
*
*
* @author noah
*
*/
/* Can't inherit from BaseSpec since it references PassThroughTag */
public class DataIteratorSpec {
/**
* Is only valid as a value expression and can't be set directly.
*/
public static final PropertyInfo ROW_ID = new PropertyInfo(null, "rowId");
public static final String PACKAGE = "com.jsftoolkit.base";
public static final String CLASS_NAME = "DataIterator";
public static final Class extends UIComponent> SUPER_CLASS = UIData.class;
public static final boolean ABSTRACT = true;
public static final String COMPONENT_TYPE = "com.jsftoolkit.DataIterator";
public static final String COMPONENT_FAMILY = "javax.faces.Data";
public static final String DEFAULT_RENDERER_TYPE = "com.jsftoolkit.GenericDataRenderer";
public static final String REGISTER_RENDERER = GenericDataRenderer.class
.getName();
}