com.jsftoolkit.base.GenerateComponents 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 com.jsftoolkit.gen.ComponentGenerator;
import com.jsftoolkit.gen.ConstantsComponentInfoFactory;
public class GenerateComponents {
/**
* Generates the base components.
*
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
new ComponentGenerator(ConstantsComponentInfoFactory
.parse(PassThroughTagSpec.class)).generateTagHandler();
ConstantsComponentInfoFactory.genAndUpdateAll(DataIteratorSpec.class);
}
}