This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> | |
<xsl:key name="gis" match="*" use="name()"/> | |
<xsl:template match="/"> | |
<table> | |
<xsl:apply-templates/> | |
<xsl:message>done reading</xsl:message> | |
<xsl:for-each select="//*[generate-id(.)=generate-id(key('gis',name(.))[1])]"> | |
<xsl:sort select="name()"/> | |
<tr> | |
<td><xsl:value-of select="name(.)"/></td> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.nicequestion.donatas.adf.commons; | |
/** Utility bean, decleared and configured in a task-flow-template.xml | |
* as a request scoped bean to suport a parameter passing | |
* between ADF task flows | |
* | |
* @param <T> task flow input parameter type | |
* @param <R> task flow return value type | |
* | |
* @author Donatas Valys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.nicequestion.donatas.adf.commons; | |
import java.io.Serializable; | |
/** Provider interface for a consuming | |
* ADF Task Flow controller to provide an | |
* input parameter and receive a return value | |
* | |
* @param <T> task flow input parameter type | |
* @param <R> task flow return value type |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.nicequestion.donatas.adf.validate; | |
import javax.el.ValueExpression; | |
import javax.faces.component.UIComponent; | |
import javax.faces.context.FacesContext; | |
import javax.faces.validator.BeanValidator; | |
import javax.faces.validator.FacesValidator; | |
import javax.faces.validator.ValidatorException; |
OlderNewer