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-serv22254/xdoclet-plugins/plugin-tapestry/src/main/java/org/xdoclet/plugin/tapestry/jelly/framework

Added Files:
        Radio.jelly RadioGroup.jelly 
Log Message:
Added @tapestry.radio and @tapestry.radio-group tags

--- NEW FILE: Radio.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="theRadio" items="${class.getTagsByName('tapestry.radio')}">
   <component type="Radio" id="${theRadio.id}">
      <j:if test="${theRadio.getNamedParameter('value') != null}">
      <binding name="value" value="${theRadio.value_}"/>
      </j:if>
      <j:if test="${theRadio.getNamedParameter('disabled') != null}">
      <binding name="disabled" value="${theRadio.disabled}"/>
      </j:if>
   </component>
   </j:forEach>
</j:jelly>
--- NEW FILE: RadioGroup.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="theRadioGroup" 
items="${class.getTagsByName('tapestry.radio-group')}">
   <component type="RadioGroup" id="${theRadioGroup.id}">
      <binding name="selected" value="${theRadioGroup.selected}"/>
      <j:if test="${theRadioGroup.getNamedParameter('disabled') != null}">
      <binding name="disabled" value="${theRadioGroup.disabled}"/>
      </j:if>
      <j:if test="${theRadioGroup.getNamedParameter('display-name') != null}">
      <binding name="displayName" value="${theRadioGroup.displayName}"/>
      </j:if>
      <j:if test="${theRadioGroup.getNamedParameter('validators') != null}">
      <binding name="validators" value="${theRadioGroup.validators}"/>
      </j:if>
   </component>
   </j:forEach>
</j:jelly>


-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
_______________________________________________
xdoclet-plugins-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xdoclet-plugins-commits

Reply via email to