Update of 
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-tapestry/src/main/java/org/xdoclet/plugin/tapestry/jelly/framework
In directory 
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25483/xdoclet-plugins/plugin-tapestry/src/main/java/org/xdoclet/plugin/tapestry/jelly/framework

Added Files:
        If.jelly 
Log Message:
Added support for framework and Framework components
Added "If" framework component

--- NEW FILE: If.jelly ---
<?xml version="1.0" encoding="UTF-8"?>
<j:jelly xmlns:j="jelly:core" xmlns:jxml="jelly:xml" xmlns:d="jelly:define">
    <j:forEach var="theIf" items="${class.getTagsByName('tapestry.if')}">
        <component type="If" id="${theIf.id}">
            <binding name="condition" value="${theIf.condition}"/>
            
            <j:if test="${theIf.getNamedParameter('condition-value') != null}">
            <binding name="conditionValue" value="${theIf.conditionValue}"/>    
            </j:if> 
            <j:if test="${theIf.getNamedParameter('listener') != null}">
            <binding name="listener" value="${theIf.listener}"/>    
            </j:if> 
            <j:if test="${theIf.getNamedParameter('element') != null}">
            <binding name="element" value="${theIf.element}"/>    
            </j:if> 
            <j:if test="${theIf.getNamedParameter('volatile') != null}">
            <binding name="volatile" value="${theIf.volatile}"/>    
            </j:if> 
        </component>
    </j:forEach>
</j:jelly>



-------------------------------------------------------
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
_______________________________________________
xdoclet-plugins-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xdoclet-plugins-commits

Reply via email to