You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by ek...@apache.org on 2005/05/02 19:24:33 UTC

svn commit: r165649 [2/5] - in /incubator/beehive/trunk/netui: ant/ src/bootstrap/org/apache/beehive/netui/tools/tldx/ src/tags-databinding/ src/tags-databinding/org/apache/beehive/netui/tags/databinding/bundle/ src/tags-databinding/org/apache/beehive/netui/tags/databinding/cellrepeater/ src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/ src/tags-databinding/org/apache/beehive/netui/tags/databinding/invoke/ src/tags-databinding/org/apache/beehive/netui/tags/databinding/message/ src/tags-databinding/org/apache/beehive/netui/tags/databinding/pageinput/ src/tags-databinding/org/apache/beehive/netui/tags/databinding/repeater/ src/tags-databinding/org/apache/beehive/netui/tags/databinding/repeater/pad/ src/tags-databinding/org/apache/beehive/netui/tags/databinding/script/ src/tags-databinding/org/apache/beehive/netui/tags/databinding/xml/ src/tags-html/ src/tags-html/org/apache/beehive/netui/tags/divpanel/ src/tags-html/org/apache/beehive/netui/tags/html/ src/tags-html/org/apache/beehive/netui/tags/javascript/ src/tags-html/org/apache/beehive/netui/tags/tree/ src/tags-template/ src/tags-template/org/apache/beehive/netui/tags/template/ test/dist-test/

Modified: incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/HeaderCell.java
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/HeaderCell.java?rev=165649&r1=165648&r2=165649&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/HeaderCell.java (original)
+++ incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/HeaderCell.java Mon May  2 10:24:30 2005
@@ -47,7 +47,6 @@
 /**
  * @jsptagref.tagdescription Renders an HTML table head cell tag (<code>&lt;th></code>).
  * @netui:tag name="headerCell" description="Render an HTML table head cell tag" body-content="scriptless"
- * @netui.tldx:tag whitespace="indent"
  */
 public class HeaderCell
     extends AbstractCell
@@ -167,7 +166,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onClick</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onClick JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setCellOnClick(String onClick) {
         _cellState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONCLICK, onClick);
@@ -181,7 +179,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onDblClick</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onDblClick JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setCellOnDblClick(String onDblClick) {
         _cellState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONDBLCLICK, onDblClick);
@@ -195,7 +192,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onKeyDown</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onKeyDown JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setCellOnKeyDown(String onKeyDown) {
         _cellState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONKEYDOWN, onKeyDown);
@@ -209,7 +205,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onKeyUp</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onKeyUp JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setCellOnKeyUp(String onKeyUp) {
         _cellState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONKEYUP, onKeyUp);
@@ -223,7 +218,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onKeyPress</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onKeyPress JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setCellOnKeyPress(String onKeyPress) {
         _cellState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONKEYPRESS, onKeyPress);
@@ -237,7 +231,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseDown</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseDown JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setCellOnMouseDown(String onMouseDown) {
         _cellState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEDOWN, onMouseDown);
@@ -251,7 +244,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseUp</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseUp JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setCellOnMouseUp(String onMouseUp) {
         _cellState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEUP, onMouseUp);
@@ -265,7 +257,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseMove</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseMove JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setCellOnMouseMove(String onMouseMove) {
         _cellState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEMOVE, onMouseMove);
@@ -279,7 +270,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseOut</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseOut JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setCellOnMouseOut(String onMouseOut) {
         _cellState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEOUT, onMouseOut);
@@ -293,7 +283,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseOver</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseOver JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setCellOnMouseOver(String onMouseOver) {
         _cellState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEOVER, onMouseOver);
@@ -307,7 +296,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_style</i>
      * @netui:attribute required="false"  rtexprvalue="true" description="The style."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.JspStyleProperty" category="format"
      */
     public void setCellStyle(String style) {
         if("".equals(style)) return;
@@ -323,7 +311,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_style_class</i>
      * @netui:attribute required="false"  rtexprvalue="true" description="The style class."
-     * @netui.tldx:attribute category="Format"
      */
     public void setCellStyleClass(String styleClass) {
         if("".equals(styleClass)) return;
@@ -339,7 +326,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_title</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The title. "
-     * @netui.tldx:attribute category="misc"
      */
     public void setCellTitle(String title) {
         _cellState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.TITLE, title);
@@ -353,7 +339,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_rowspan</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The rowspan."
-     * @netui.tldx:attribute category="misc"
      */
     public void setCellRowspan(int rowSpan) {
         _cellState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.ROWSPAN, "" + rowSpan);
@@ -367,7 +352,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_colspan</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The colspan."
-     * @netui.tldx:attribute category="misc"
      */
     public void setCellColspan(int colSpan) {
         _cellState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.COLSPAN, "" + colSpan);
@@ -381,7 +365,6 @@
      * @jsptagref.databindable true
      * @jsptagref.attributesyntaxvalue <i>string_align</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The cell's horizontal alignment"
-     * @netui.tldx:attribute category="misc"
      */
     public void setCellAlign(String align) {
         /* todo: should this enforce left|center|right|justify|char as in the spec */
@@ -396,7 +379,6 @@
      * @jsptagref.databindable true
      * @jsptagref.attributesyntaxvalue <i>string_alignChar</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The cell's horizontal alignment character"
-     * @netui.tldx:attribute category="misc"
      */
     public void setCellChar(String alignChar) {
         _cellState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.CHAR, alignChar);
@@ -410,7 +392,6 @@
      * @jsptagref.databindable true
      * @jsptagref.attributesyntaxvalue <i>string_alignCharOff</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The cell's horizontal alignment character offset"
-     * @netui.tldx:attribute category="misc"
      */
     public void setCellCharoff(String alignCharOff) {
         _cellState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.CHAROFF, alignCharOff);
@@ -424,7 +405,6 @@
      * @jsptagref.databindable true
      * @jsptagref.attributesyntaxvalue <i>string_align</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The cell's vertical alignment"
-     * @netui.tldx:attribute category="misc"
      */
     public void setCellValign(String align) {
         /* todo: should this enforce top|middle|bottom|baseline as in the spec */
@@ -439,7 +419,6 @@
      * @jsptagref.databindable true
      * @jsptagref.attributesyntaxvalue <i>string_lang</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The cell's language"
-     * @netui.tldx:attribute category="misc"
      */
     public void setCellLang(String lang) {
         _cellState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.LANG, lang);
@@ -453,7 +432,6 @@
      * @jsptagref.databindable true
      * @jsptagref.attributesyntaxvalue <i>string_dir</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The cell's text direction"
-     * @netui.tldx:attribute category="misc"
      */
     public void setCellDir(String dir) {
         _cellState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.DIR, dir);
@@ -467,7 +445,6 @@
      * @jsptagref.databindable true
      * @jsptagref.attributesyntaxvalue <i>string_dir</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The abbreviated form of the cell's content"
-     * @netui.tldx:attribute category="misc"
      */
     public void setCellAbbr(String abbr) {
         _cellState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.ABBR, abbr);
@@ -481,7 +458,6 @@
      * @jsptagref.databindable true
      * @jsptagref.attributesyntaxvalue <i>string_axis</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The axis attribute"
-     * @netui.tldx:attribute category="misc"
      */
     public void setCellAxis(String axis) {
         _cellState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.AXIS, axis);
@@ -495,7 +471,6 @@
      * @jsptagref.databindable true
      * @jsptagref.attributesyntaxvalue <i>string_headers</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The headers attribute"
-     * @netui.tldx:attribute category="misc"
      */
     public void setCellHeaders(String headers) {
         _cellState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.HEADERS, headers);
@@ -509,7 +484,6 @@
      * @jsptagref.databindable true
      * @jsptagref.attributesyntaxvalue <i>string_scope</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The scope attribute"
-     * @netui.tldx:attribute category="misc"
      */
     public void setCellScope(String scope) {
         _cellState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.SCOPE, scope);
@@ -524,7 +498,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_tagId</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="String value. Sets the id (or name) attribute of the rendered HTML tag. "
-     * @netui.tldx:attribute category="general"
      */
     public void setCellTagId(String tagId)
         throws JspException {

Modified: incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/ImageAnchorCell.java
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/ImageAnchorCell.java?rev=165649&r1=165648&r2=165649&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/ImageAnchorCell.java (original)
+++ incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/ImageAnchorCell.java Mon May  2 10:24:30 2005
@@ -36,7 +36,6 @@
 /**
  * @jsptagref.tagdescription Renders a column containing an image anchor.
  * @netui:tag name="imageAnchorCell" description="Renders a column containing an image anchor" body-content="scriptless"
- * @netui.tldx:tag whitespace="indent"
  */
 public class ImageAnchorCell
     extends AbstractHtmlTableCell
@@ -66,7 +65,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onClick</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onClick JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnClick(String onClick) {
         _anchorState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONCLICK, onClick);
@@ -80,7 +78,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onDblClick</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onDblClick JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnDblClick(String onDblClick) {
         _anchorState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONDBLCLICK, onDblClick);
@@ -94,7 +91,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onKeyDown</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onKeyDown JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnKeyDown(String onKeyDown) {
         _anchorState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONKEYDOWN, onKeyDown);
@@ -108,7 +104,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onKeyUp</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onKeyUp JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnKeyUp(String onKeyUp) {
         _anchorState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONKEYUP, onKeyUp);
@@ -122,7 +117,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onKeyPress</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onKeyPress JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnKeyPress(String onKeyPress) {
         _anchorState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONKEYPRESS, onKeyPress);
@@ -136,7 +130,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseDown</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseDown JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseDown(String onMouseDown) {
         _anchorState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEDOWN, onMouseDown);
@@ -150,7 +143,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseUp</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseUp JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseUp(String onMouseUp) {
         _anchorState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEUP, onMouseUp);
@@ -164,7 +156,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseMove</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseMove JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseMove(String onMouseMove) {
         _anchorState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEMOVE, onMouseMove);
@@ -178,7 +169,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseOut</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseOut JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseOut(String onMouseOut) {
         _anchorState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEOUT, onMouseOut);
@@ -192,7 +182,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseOver</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseOver JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseOver(String onMouseOver) {
         _anchorState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEOVER, onMouseOver);
@@ -206,7 +195,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_style</i>
      * @netui:attribute required="false"  rtexprvalue="true" description="The style."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.JspStyleProperty" category="format"
      */
     public void setStyle(String style) {
         if("".equals(style)) return;
@@ -222,7 +210,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_style_class</i>
      * @netui:attribute required="false"  rtexprvalue="true" description="The style class."
-     * @netui.tldx:attribute category="Format"
      */
     public void setStyleClass(String styleClass) {
         if("".equals(styleClass)) return;
@@ -238,7 +225,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_title</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The title. "
-     * @netui.tldx:attribute category="misc"
      */
     public void setTitle(String title) {
         _anchorState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.TITLE, title);
@@ -260,7 +246,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_charset</i>
      * @netui:attribute required="false"  rtexprvalue="true"
      * description="The character set."
-     * @netui.tldx:attribute category="misc"
      */
     public void setCharSet(String charSet) {
         _anchorState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.CHARSET, charSet);
@@ -275,7 +260,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_type</i>
      * @netui:attribute required="false"  rtexprvalue="true"
      * description="The type."
-     * @netui.tldx:attribute category="misc"
      */
     public void setType(String type) {
         _anchorState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.TYPE, type);
@@ -290,7 +274,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_hreflang</i>
      * @netui:attribute required="false"  rtexprvalue="true"
      * description="The HREF lang."
-     * @netui.tldx:attribute category="misc"
      */
     public void setHrefLang(String hreflang) {
         _anchorState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.HREFLANG, hreflang);
@@ -305,7 +288,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_rel</i>
      * @netui:attribute required="false"  rtexprvalue="true"
      * description="The rel."
-     * @netui.tldx:attribute category="misc"
      */
     public void setRel(String rel) {
         _anchorState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.REL, rel);
@@ -320,7 +302,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_rev</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="The rev."
-     * @netui.tldx:attribute category="misc"
      */
     public void setRev(String rev) {
         _anchorState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.REV, rev);
@@ -336,7 +317,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_action</i>
      * @netui:attribute required="false"  rtexprvalue="true"
      * description="The window target."
-     * @netui.tldx:attribute category="misc"
      */
     public void setTarget(String target) {
         _anchorState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.TARGET, target);
@@ -351,7 +331,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_href</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="The URL to go to."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.URIPropertyClass"
      * reftype="url"
      */
     public void setHref(String href) {
@@ -368,7 +347,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_targetScope</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="The target scope in which the associated action's page flow resides"
-     * @netui.tldx:attribute category="general"
      */
     public void setTargetScope(String targetScope) {
         _imageAnchorCellModel.setScopeId(targetScope);
@@ -384,7 +362,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_action</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="The action method to invoke.  The action method must be in the Controller file of the Page Flow directory."
-     * @netui.tldx:attribute reftype="netui-action-url" category="general"
      */
     public void setAction(String action)
             throws JspException {
@@ -406,7 +383,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_align</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="The alignment of the image."
-     * @netui.tldx:attribute
      */
     public void setAlign(String align) {
         _imageState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.ALIGN, align);
@@ -421,7 +397,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_alt</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="The alternative text of the image."
-     * @netui.tldx:attribute
      */
     public void setAlt(String alt) {
         _imageState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.ALT, alt);
@@ -433,7 +408,6 @@
      * @param longdesc - the longdesc.
      * @netui:attribute required="false" rtexprvalue="true"
      * description="Sets the property to specify the longdesc."
-     * @netui.tldx:attribute category="misc"
      */
     public void setLongdesc(String longdesc) {
         _imageState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.LONGDESC, longdesc);
@@ -448,7 +422,6 @@
      * @jsptagref.attributesyntaxvalue <i>integer_pixelBorder</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="The border size around the image."
-     * @netui.tldx:attribute
      */
     public void setBorder(String border) {
         _imageState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.BORDER, border);
@@ -463,7 +436,6 @@
      * @jsptagref.attributesyntaxvalue <i>integer_height</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="The image height."
-     * @netui.tldx:attribute
      */
     public void setHeight(String height) {
         _imageState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.HEIGHT, height);
@@ -478,7 +450,6 @@
      * @jsptagref.attributesyntaxvalue <i>integer_hspace</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="The horizontal spacing around the image."
-     * @netui.tldx:attribute category="misc"
      */
     public void setHspace(String hspace) {
         _imageState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.HSPACE, hspace);
@@ -493,7 +464,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_isMap</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="The server-side map declaration."
-     * @netui.tldx:attribute category="misc"
      */
     public void setIsmap(String ismap) {
         _imageState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.ISMAP, ismap);
@@ -508,7 +478,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_src</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="The image source URI"
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.URIPropertyClass"
      * reftype="img-url"
      */
     public void setSrc(String src)
@@ -525,7 +494,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_useMap</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="The client-side image map declaration"
-     * @netui.tldx:attribute category="misc"
      */
     public void setUsemap(String usemap) {
         _imageState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.USEMAP, usemap);
@@ -540,7 +508,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_vspace</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="The vertical spacing around the image."
-     * @netui.tldx:attribute
      */
     public void setVspace(String vspace) {
         _imageState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.VSPACE, vspace);
@@ -555,7 +522,6 @@
      * @param imageStyle - the label style
      * @netui:attribute required="false" rtexprvalue="true"
      * description="Set the style for the contained image. "
-     * @netui.tldx:attribute category="format" propertyclass="workshop.jspdesigner.properties.JspStyleProperty"
      */
     public void setImageStyle(String imageStyle) {
         _imageState.style = imageStyle;
@@ -570,7 +536,6 @@
      * @param imageClass - the image class
      * @netui:attribute required="false" rtexprvalue="true"
      * description="Set the label style class for each contained image."
-     * @netui.tldx:attribute category="format"
      */
     public void setImageStyleClass(String imageClass) {
         _imageState.styleClass = imageClass;
@@ -585,7 +550,6 @@
      * @jsptagref.attributesyntaxvalue <i>integer_pixelWidth</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="The image width."
-     * @netui.tldx:attribute
      */
     public void setWidth(String width) {
         _imageState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.WIDTH, width);
@@ -600,7 +564,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_tagId</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="String value. Sets the id (or name) attribute of the rendered HTML tag. "
-     * @netui.tldx:attribute category="general"
      */
     public void setTagId(String tagId)
         throws JspException {
@@ -616,7 +579,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_tagId</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="String value. Sets the id (or name) attribute of the rendered HTML tag. "
-     * @netui.tldx:attribute category="general"
      */
     public void setAnchorTagId(String tagId)
         throws JspException {

Modified: incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/ImageCell.java
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/ImageCell.java?rev=165649&r1=165648&r2=165649&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/ImageCell.java (original)
+++ incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/ImageCell.java Mon May  2 10:24:30 2005
@@ -35,7 +35,6 @@
 /**
  * @jsptagref.tagdescription Renders a column of images in a data grid.
  * @netui:tag name="imageCell" description="Renders a column of images in a NetUI data grid" body-content="scriptless"
- * @netui.tldx:tag renderer="workshop.netui.jspdesigner.tldx.ImageColumnRenderer" whitespace="indent"
  */
 public class ImageCell
     extends AbstractHtmlTableCell
@@ -59,7 +58,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onClick</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onClick JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnClick(String onClick) {
         _imageState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONCLICK, onClick);
@@ -73,7 +71,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onDblClick</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onDblClick JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnDblClick(String onDblClick) {
         _imageState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONDBLCLICK, onDblClick);
@@ -87,7 +84,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onKeyDown</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onKeyDown JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnKeyDown(String onKeyDown) {
         _imageState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONKEYDOWN, onKeyDown);
@@ -101,7 +97,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onKeyUp</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onKeyUp JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnKeyUp(String onKeyUp) {
         _imageState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONKEYUP, onKeyUp);
@@ -115,7 +110,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onKeyPress</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onKeyPress JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnKeyPress(String onKeyPress) {
         _imageState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONKEYPRESS, onKeyPress);
@@ -129,7 +123,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseDown</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseDown JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseDown(String onMouseDown) {
         _imageState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEDOWN, onMouseDown);
@@ -143,7 +136,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseUp</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseUp JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseUp(String onMouseUp) {
         _imageState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEUP, onMouseUp);
@@ -157,7 +149,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseMove</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseMove JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseMove(String onMouseMove) {
         _imageState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEMOVE, onMouseMove);
@@ -171,7 +162,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseOut</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseOut JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseOut(String onMouseOut) {
         _imageState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEOUT, onMouseOut);
@@ -185,7 +175,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseOver</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseOver JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseOver(String onMouseOver) {
         _imageState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEOVER, onMouseOver);
@@ -199,7 +188,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_style</i>
      * @netui:attribute required="false"  rtexprvalue="true" description="The style."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.JspStyleProperty" category="format"
      */
     public void setStyle(String style) {
         if("".equals(style)) return;
@@ -215,7 +203,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_style_class</i>
      * @netui:attribute required="false"  rtexprvalue="true" description="The style class."
-     * @netui.tldx:attribute category="Format"
      */
     public void setStyleClass(String styleClass) {
         if("".equals(styleClass)) return;
@@ -231,7 +218,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_title</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The title. "
-     * @netui.tldx:attribute category="misc"
      */
     public void setTitle(String title) {
         _imageState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.TITLE, title);
@@ -245,7 +231,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_lang</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="The lang."
-     * @netui.tldx:attribute category="internationalization"
      */
     public void setLang(String lang)
     {
@@ -260,7 +245,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_dir</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="The dir."
-     * @netui.tldx:attribute category="internationalization"
      */
     public void setDir(String dir)
     {
@@ -272,7 +256,6 @@
      * @jsptagref.databindable Read Only
      * @jsptagref.attributesyntaxvalue <i>literal_or_expression_src</i>
      * @netui:attribute required="true" rtexprvalue="true"
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.URIPropertyClass"  reftype="img-url"
      */
     public void setSrc(String src) {
         _imageState.src = src;
@@ -349,7 +332,6 @@
      * @jsptagref.databindable Read Only
      * @jsptagref.attributesyntaxvalue <i>string_longdesc</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The longdesc of the image."
-     * @netui.tldx:attribute
      */
     public void setLongdesc(String longdesc) {
         _imageState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.LONGDESC, longdesc);
@@ -364,7 +346,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_alt</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="The alternative text of the image."
-     * @netui.tldx:attribute
      */
     public void setAlt(String alt) {
         _imageState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.ALT, alt);
@@ -379,7 +360,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_tagId</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="String value. Sets the id (or name) attribute of the rendered HTML tag. "
-     * @netui.tldx:attribute category="general"
      */
     public void setTagId(String tagId)
         throws JspException {

Modified: incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/RenderPager.java
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/RenderPager.java?rev=165649&r1=165648&r2=165649&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/RenderPager.java (original)
+++ incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/RenderPager.java Mon May  2 10:24:30 2005
@@ -28,7 +28,6 @@
  * @jsptagref.tagdescription Renders a pager in a specific spot inside of a data grid.
  * @netui:tag name="renderPager" body-content="empty"
  * description="Tag for rendering a pager in a specific spot inside of a data grid tag"
- * @netui.tldx:tag renderer="" whitespace="indent"
  */
 public class RenderPager
         extends AbstractDataGridHtmlTag {

Modified: incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/Row.java
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/Row.java?rev=165649&r1=165648&r2=165649&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/Row.java (original)
+++ incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/Row.java Mon May  2 10:24:30 2005
@@ -39,7 +39,6 @@
 /**
  * @jsptagref.tagdescription Sets HTML attributes on data grid table rows.
  * @netui:tag name="row" body-content="scriptless" description="Sets HTML attributes on data grid table rows"
- * @netui.tldx:tag whitespace="indent"
  */
 public class Row
     extends AbstractDataGridHtmlTag {
@@ -58,7 +57,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onClick</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onClick JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnClick(String onClick) {
         _trState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONCLICK, onClick);
@@ -72,7 +70,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onDblClick</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onDblClick JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnDblClick(String onDblClick) {
         _trState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONDBLCLICK, onDblClick);
@@ -86,7 +83,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onKeyDown</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onKeyDown JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnKeyDown(String onKeyDown) {
         _trState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONKEYDOWN, onKeyDown);
@@ -100,7 +96,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onKeyUp</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onKeyUp JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnKeyUp(String onKeyUp) {
         _trState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONKEYUP, onKeyUp);
@@ -114,7 +109,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onKeyPress</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onKeyPress JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnKeyPress(String onKeyPress) {
         _trState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONKEYPRESS, onKeyPress);
@@ -128,7 +122,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseDown</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseDown JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseDown(String onMouseDown) {
         _trState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEDOWN, onMouseDown);
@@ -142,7 +135,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseUp</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseUp JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseUp(String onMouseUp) {
         _trState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEUP, onMouseUp);
@@ -156,7 +148,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseMove</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseMove JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseMove(String onMouseMove) {
         _trState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEMOVE, onMouseMove);
@@ -170,7 +161,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseOut</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseOut JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseOut(String onMouseOut) {
         _trState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEOUT, onMouseOut);
@@ -184,7 +174,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseOver</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseOver JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseOver(String onMouseOver) {
         _trState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEOVER, onMouseOver);
@@ -198,7 +187,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_style</i>
      * @netui:attribute required="false"  rtexprvalue="true" description="The style."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.JspStyleProperty" category="format"
      */
     public void setStyle(String style) {
         if("".equals(style)) return;
@@ -214,7 +202,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_style_class</i>
      * @netui:attribute required="false"  rtexprvalue="true" description="The style class."
-     * @netui.tldx:attribute category="Format"
      */
     public void setStyleClass(String styleClass) {
         if("".equals(styleClass)) return;
@@ -230,7 +217,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_title</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The title. "
-     * @netui.tldx:attribute category="misc"
      */
     public void setTitle(String title) {
         _trState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.TITLE, title);
@@ -244,7 +230,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_lang</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="The lang."
-     * @netui.tldx:attribute category="internationalization"
      */
     public void setLang(String lang)
     {
@@ -259,7 +244,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_dir</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="The dir."
-     * @netui.tldx:attribute category="internationalization"
      */
     public void setDir(String dir)
     {
@@ -275,7 +259,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_tagId</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="String value. Sets the id (or name) attribute of the rendered HTML tag. "
-     * @netui.tldx:attribute category="general"
      */
     public void setTagId(String tagId)
         throws JspException {

Modified: incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/Rows.java
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/Rows.java?rev=165649&r1=165648&r2=165649&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/Rows.java (original)
+++ incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/Rows.java Mon May  2 10:24:30 2005
@@ -44,8 +44,6 @@
  * @jsptagref.tagdescription Container tag for columns that will render in the data grid.
  * @netui:tag name="rows" description="Container tag for columns that will render in the grid."
  * body-content="scriptless"
- * @netui.tldx:tag renderer="workshop.netui.jspdesigner.tldx.ColumnsRenderer"
- * whitespace="indent" requiredparent="dataGrid"
  */
 public class Rows
     extends AbstractDataGridHtmlTag
@@ -66,7 +64,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onClick</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onClick JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnClick(String onClick) {
         _tbodyTag.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONCLICK, onClick);
@@ -80,7 +77,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onDblClick</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onDblClick JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnDblClick(String onDblClick) {
         _tbodyTag.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONDBLCLICK, onDblClick);
@@ -94,7 +90,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onKeyDown</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onKeyDown JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnKeyDown(String onKeyDown) {
         _tbodyTag.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONKEYDOWN, onKeyDown);
@@ -108,7 +103,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onKeyUp</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onKeyUp JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnKeyUp(String onKeyUp) {
         _tbodyTag.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONKEYUP, onKeyUp);
@@ -122,7 +116,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onKeyPress</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onKeyPress JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnKeyPress(String onKeyPress) {
         _tbodyTag.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONKEYPRESS, onKeyPress);
@@ -136,7 +129,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseDown</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseDown JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseDown(String onMouseDown) {
         _tbodyTag.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEDOWN, onMouseDown);
@@ -150,7 +142,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseUp</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseUp JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseUp(String onMouseUp) {
         _tbodyTag.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEUP, onMouseUp);
@@ -164,7 +155,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseMove</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseMove JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseMove(String onMouseMove) {
         _tbodyTag.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEMOVE, onMouseMove);
@@ -178,7 +168,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseOut</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseOut JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseOut(String onMouseOut) {
         _tbodyTag.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEOUT, onMouseOut);
@@ -192,7 +181,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseOver</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseOver JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseOver(String onMouseOver) {
         _tbodyTag.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEOVER, onMouseOver);
@@ -206,7 +194,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_style</i>
      * @netui:attribute required="false"  rtexprvalue="true" description="The style."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.JspStyleProperty" category="format"
      */
     public void setStyle(String style) {
         if("".equals(style)) return;
@@ -222,7 +209,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_style_class</i>
      * @netui:attribute required="false"  rtexprvalue="true" description="The style class."
-     * @netui.tldx:attribute category="Format"
      */
     public void setStyleClass(String styleClass) {
         if("".equals(styleClass)) return;
@@ -238,7 +224,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_title</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The title. "
-     * @netui.tldx:attribute category="misc"
      */
     public void setTitle(String title) {
         _tbodyTag.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.TITLE, title);
@@ -252,7 +237,6 @@
      * @jsptagref.databindable true
      * @jsptagref.attributesyntaxvalue <i>string_align</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The cell's horizontal alignment"
-     * @netui.tldx:attribute category="misc"
      */
     public void setAlign(String align) {
         /* todo: should this enforce left|center|right|justify|char as in the spec */
@@ -267,7 +251,6 @@
      * @jsptagref.databindable true
      * @jsptagref.attributesyntaxvalue <i>string_alignChar</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The cell's horizontal alignment character"
-     * @netui.tldx:attribute category="misc"
      */
     public void setChar(String alignChar) {
         _tbodyTag.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.CHAR, alignChar);
@@ -281,7 +264,6 @@
      * @jsptagref.databindable true
      * @jsptagref.attributesyntaxvalue <i>string_alignCharOff</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The cell's horizontal alignment character offset"
-     * @netui.tldx:attribute category="misc"
      */
     public void setCharoff(String alignCharOff) {
         _tbodyTag.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.CHAROFF, alignCharOff);
@@ -295,7 +277,6 @@
      * @jsptagref.databindable true
      * @jsptagref.attributesyntaxvalue <i>string_align</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The cell's vertical alignment"
-     * @netui.tldx:attribute category="misc"
      */
     public void setValign(String align) {
         /* todo: should this enforce top|middle|bottom|baseline as in the spec */
@@ -310,7 +291,6 @@
      * @jsptagref.databindable true
      * @jsptagref.attributesyntaxvalue <i>string_lang</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The cell's language"
-     * @netui.tldx:attribute category="misc"
      */
     public void setLang(String lang) {
         _tbodyTag.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.LANG, lang);
@@ -324,7 +304,6 @@
      * @jsptagref.databindable true
      * @jsptagref.attributesyntaxvalue <i>string_dir</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The cell's text direction"
-     * @netui.tldx:attribute category="misc"
      */
     public void setDir(String dir) {
         _tbodyTag.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.DIR, dir);
@@ -339,7 +318,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_tagId</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="String value. Sets the id (or name) attribute of the rendered HTML tag. "
-     * @netui.tldx:attribute category="general"
      */
     public void setTagId(String tagId)
         throws JspException {
@@ -348,7 +326,6 @@
 
     /**
      * @netui:attribute required="false" rtexprvalue="true"
-     * @netui.tldx:attribute category="general"
      */
     public void setRenderRow(boolean renderRow) {
         _renderRow = renderRow;

Modified: incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/SpanCell.java
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/SpanCell.java?rev=165649&r1=165648&r2=165649&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/SpanCell.java (original)
+++ incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/SpanCell.java Mon May  2 10:24:30 2005
@@ -36,7 +36,6 @@
 /**
  * @jsptagref.tagdescription Renders a column of data in a data grid.
  * @netui:tag name="spanCell" description="Renders a column of data in a NetUI grid" body-content="scriptless"
- * @netui.tldx:tag whitespace="indent"
  */
 public class SpanCell
     extends AbstractHtmlTableCell
@@ -60,7 +59,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onClick</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onClick JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnClick(String onClick) {
         _spanState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONCLICK, onClick);
@@ -74,7 +72,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onDblClick</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onDblClick JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnDblClick(String onDblClick) {
         _spanState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONDBLCLICK, onDblClick);
@@ -88,7 +85,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onKeyDown</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onKeyDown JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnKeyDown(String onKeyDown) {
         _spanState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONKEYDOWN, onKeyDown);
@@ -102,7 +98,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onKeyUp</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onKeyUp JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnKeyUp(String onKeyUp) {
         _spanState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONKEYUP, onKeyUp);
@@ -116,7 +111,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onKeyPress</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onKeyPress JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnKeyPress(String onKeyPress) {
         _spanState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONKEYPRESS, onKeyPress);
@@ -130,7 +124,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseDown</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseDown JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseDown(String onMouseDown) {
         _spanState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEDOWN, onMouseDown);
@@ -144,7 +137,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseUp</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseUp JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseUp(String onMouseUp) {
         _spanState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEUP, onMouseUp);
@@ -158,7 +150,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseMove</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseMove JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseMove(String onMouseMove) {
         _spanState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEMOVE, onMouseMove);
@@ -172,7 +163,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseOut</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseOut JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseOut(String onMouseOut) {
         _spanState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEOUT, onMouseOut);
@@ -186,7 +176,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_onMouseOver</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The onMouseOver JavaScript event."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.EventPropertyClass" category="event"
      */
     public void setOnMouseOver(String onMouseOver) {
         _spanState.registerAttribute(AbstractHtmlState.ATTR_JAVASCRIPT, HtmlConstants.ONMOUSEOVER, onMouseOver);
@@ -200,7 +189,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_style</i>
      * @netui:attribute required="false"  rtexprvalue="true" description="The style."
-     * @netui.tldx:attribute propertyclass="workshop.jspdesigner.properties.JspStyleProperty" category="format"
      */
     public void setStyle(String style) {
         if("".equals(style)) return;
@@ -216,7 +204,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_style_class</i>
      * @netui:attribute required="false"  rtexprvalue="true" description="The style class."
-     * @netui.tldx:attribute category="Format"
      */
     public void setStyleClass(String styleClass) {
         if("".equals(styleClass)) return;
@@ -232,7 +219,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_title</i>
      * @netui:attribute required="false" rtexprvalue="true" description="The title. "
-     * @netui.tldx:attribute category="misc"
      */
     public void setTitle(String title) {
         _spanState.registerAttribute(AbstractHtmlState.ATTR_GENERAL, HtmlConstants.TITLE, title);
@@ -246,7 +232,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_lang</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="The lang."
-     * @netui.tldx:attribute category="internationalization"
      */
     public void setLang(String lang)
     {
@@ -261,7 +246,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_dir</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="The dir."
-     * @netui.tldx:attribute category="internationalization"
      */
     public void setDir(String dir)
     {
@@ -277,7 +261,6 @@
      * @jsptagref.attributesyntaxvalue <i>string_tagId</i>
      * @netui:attribute required="false" rtexprvalue="true"
      * description="String value. Sets the id (or name) attribute of the rendered HTML tag. "
-     * @netui.tldx:attribute category="general"
      */
     public void setTagId(String tagId)
         throws JspException {

Modified: incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/TemplateCell.java
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/TemplateCell.java?rev=165649&r1=165648&r2=165649&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/TemplateCell.java (original)
+++ incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/datagrid/TemplateCell.java Mon May  2 10:24:30 2005
@@ -23,9 +23,7 @@
 
 /**
  * @jsptagref.tagdescription Renders a column templated by the body of the JSP tag.
- * @netui:tag name="templateCell" description="Renders a column templated by the body of the JSP tag"
- * body-content="scriptless"
- * @netui.tldx:tag whitespace="indent"
+ * @netui:tag name="templateCell" description="Renders a column templated by the body of the JSP tag" body-content="scriptless"
  */
 public class TemplateCell
         extends AbstractHtmlTableCell {

Modified: incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/invoke/CallMethod.java
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/invoke/CallMethod.java?rev=165649&r1=165648&r2=165649&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/invoke/CallMethod.java (original)
+++ incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/invoke/CallMethod.java Mon May  2 10:24:30 2005
@@ -78,7 +78,6 @@
  * see the help topic <a href="{@docRoot}/../guide/netui/guide/conCallingAWebServiceFromAPageFlow.html">
  * Calling Web Services and Custom Java Controls From A Page Flow</a>
  * @netui:tag name="callMethod" description="Use this tag to call a method on an object."
- * @netui.tldx:tag renderer="workshop.netui.jspdesigner.tldx.CallMethodRenderer" requiredchild="methodParameter"
  * @see MethodParameter
  * @see CallPageFlow
  * @see javax.servlet.jsp.PageContext

Modified: incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/invoke/CallPageFlow.java
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/invoke/CallPageFlow.java?rev=165649&r1=165648&r2=165649&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/invoke/CallPageFlow.java (original)
+++ incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/invoke/CallPageFlow.java Mon May  2 10:24:30 2005
@@ -88,7 +88,6 @@
  *      ...
  *      &lt;netui:label value="{pageContext.cartSum}"/></pre>
  * @netui:tag name="callPageFlow" description="Use this tag to call a method on the current page flow controller."
- * @netui.tldx:tag requiredchild="methodParameter" renderer="workshop.netui.jspdesigner.tldx.compat.CallPageFlowRenderer"
  * deprecated="true"
  */
 public class CallPageFlow

Modified: incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/invoke/MethodParameter.java
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/invoke/MethodParameter.java?rev=165649&r1=165648&r2=165649&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/invoke/MethodParameter.java (original)
+++ incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/invoke/MethodParameter.java Mon May  2 10:24:30 2005
@@ -111,9 +111,6 @@
  * This will correspond to the method call:</p>
  * <pre>    foo(42, null);</pre>
  * @netui:tag name="methodParameter" description="Use this tag to add an argument to a method that will be called on some object."
- * @netui.tldx:tag requiredparent="choiceMethod callPageFlow callControl callMethod" requiredchild="#nothing"
- * renderer="workshop.netui.jspdesigner.tldx.MethodParameterRenderer"
- * bodycontentpref="empty"
  */
 public class MethodParameter
         extends AbstractClassicTag {

Modified: incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/message/Message.java
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/message/Message.java?rev=165649&r1=165648&r2=165649&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/message/Message.java (original)
+++ incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/message/Message.java Mon May  2 10:24:30 2005
@@ -61,8 +61,6 @@
  * <pre>    To read about messaging, go to my web page.</pre>
  * @netui:tag name="message"
  * description="Allows you to format messages according to any sequence you want, using one or more values from arguments defined in MessageArg tag(s). The results are available to the page context."
- * @netui.tldx:tag renderer="workshop.netui.jspdesigner.tldx.MessageRenderer" requiredchild="messageArg"
- * whitespace="indent"
  */
 public class Message
         extends AbstractClassicTag {

Modified: incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/message/MessageArg.java
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/message/MessageArg.java?rev=165649&r1=165648&r2=165649&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/message/MessageArg.java (original)
+++ incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/message/MessageArg.java Mon May  2 10:24:30 2005
@@ -37,11 +37,6 @@
  * tag, see the {@link Message} description.
  * @netui:tag name="messageArg"
  * description="Allows you to set values that are used as arguments to the Message tag. The formatted message results are available to the page context."
- * @netui.tldx:tag renderer="workshop.netui.jspdesigner.tldx.MessageArgRenderer"
- * requiredparent="message"
- * requiredchild="#nothing"
- * bodycontentpref="empty"
- * whitespace="indent"
  */
 public class MessageArg
         extends AbstractClassicTag {

Modified: incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/pageinput/DeclarePageInput.java
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/pageinput/DeclarePageInput.java?rev=165649&r1=165648&r2=165649&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/pageinput/DeclarePageInput.java (original)
+++ incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/pageinput/DeclarePageInput.java Mon May  2 10:24:30 2005
@@ -117,10 +117,6 @@
  * @netui:tag name="declarePageInput"
  * description="Use this tag to declare a page input variable that is available in the pageInput databinding context."
  * body-content="scriptless"
- * @netui.tldx:tag requiredchild="#nothing"
- * renderer="workshop.netui.jspdesigner.tldx.DeclarePageInputRenderer"
- * bodycontentpref="empty"
- * expressioninfo="workshop.netui.jspdesigner.tldx.expression.NetuiPageInputExpressionInfo"
  */
 public class DeclarePageInput
         extends AbstractSimpleTag {
@@ -177,7 +173,6 @@
      * @jsptagref.databindable false
      * @jsptagref.attributesyntaxvalue <i>string_type</i>
      * @netui:attribute required="true"
-     * @netui.tldx:attribute extype="java-classname"
      */
     public void setType(String type) {
         _type = type;

Modified: incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/repeater/Repeater.java
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/repeater/Repeater.java?rev=165649&r1=165648&r2=165649&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/repeater/Repeater.java (original)
+++ incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/repeater/Repeater.java Mon May  2 10:24:30 2005
@@ -157,8 +157,6 @@
  *        &lt;/netui-data:repeaterFooter>
  *    &lt;/netui-data:repeater></pre>
  * @netui:tag name="repeater" description="A markup-generic tag that repeats over a data set, and renders the data onto the page."
- * @netui.tldx:tag whitespace="indent" expressioninfo="workshop.netui.jspdesigner.tldx.expression.NetuiContainerExpressionInfo"
- *     renderer="workshop.netui.jspdesigner.tldx.RepeaterRenderer"
  */
 public class Repeater
         extends AbstractClassicTag
@@ -719,7 +717,6 @@
      * @jsptagref.databindable Read / Write
      * @jsptagref.attributesyntaxvalue <i>expression_datasource</i>
      * @netui:attribute required="true"
-     * @netui.tldx:attribute language="netuiel"
      */
     public void setDataSource(String dataSource) {
         _dataSource = dataSource;

Modified: incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/repeater/RepeaterFooter.java
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/repeater/RepeaterFooter.java?rev=165649&r1=165648&r2=165649&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/repeater/RepeaterFooter.java (original)
+++ incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/repeater/RepeaterFooter.java Mon May  2 10:24:30 2005
@@ -67,7 +67,6 @@
  *        <b>&lt;/netui-data:repeaterFooter></b>
  *    &lt;/netui-data:repeater></pre>
  * @netui:tag name="repeaterFooter" description="Use this tag to render the footer of a Repeater."
- * @netui.tldx:tag renderer="workshop.netui.jspdesigner.tldx.RepeaterFooterRenderer" whitespace="indent" requiredparent="repeater"
  */
 public class RepeaterFooter
         extends RepeaterComponent {

Modified: incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/repeater/RepeaterHeader.java
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/repeater/RepeaterHeader.java?rev=165649&r1=165648&r2=165649&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/repeater/RepeaterHeader.java (original)
+++ incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/repeater/RepeaterHeader.java Mon May  2 10:24:30 2005
@@ -67,7 +67,6 @@
  *        &lt;/netui-data:repeaterFooter>
  *    &lt;/netui-data:repeater></pre>
  * @netui:tag name="repeaterHeader" description="Use this tag to render the header of a Repeater."
- * @netui.tldx:tag renderer="workshop.netui.jspdesigner.tldx.RepeaterHeaderRenderer" whitespace="indent" requiredparent="repeater"
  */
 public class RepeaterHeader
         extends RepeaterComponent {

Modified: incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/repeater/RepeaterItem.java
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/repeater/RepeaterItem.java?rev=165649&r1=165648&r2=165649&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/repeater/RepeaterItem.java (original)
+++ incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/repeater/RepeaterItem.java Mon May  2 10:24:30 2005
@@ -61,7 +61,6 @@
  *        &lt;/netui-data:repeaterFooter>
  *    &lt;/netui-data:repeater></pre>
  * @netui:tag name="repeaterItem" description="Use this tag to render each item in the data set."
- * @netui.tldx:tag renderer="workshop.netui.jspdesigner.tldx.RepeaterItemRenderer" whitespace="indent" requiredparent="repeater"
  */
 public class RepeaterItem
         extends RepeaterComponent {

Modified: incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/repeater/pad/Pad.java
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/repeater/pad/Pad.java?rev=165649&r1=165648&r2=165649&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/repeater/pad/Pad.java (original)
+++ incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/repeater/pad/Pad.java Mon May  2 10:24:30 2005
@@ -68,7 +68,6 @@
  *             &lt;/netui-data:repeaterItem>
  *     &lt;/netui-data:repeater></pre>
  * @netui:tag name="pad" description="Affects the number of items that are rendered in a Repeater."
- * @netui.tldx:tag requiredparent="repeater" output="|$children|" whitespace="indent"
  */
 public class Pad
         extends RepeaterComponent {

Modified: incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/script/GetData.java
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/script/GetData.java?rev=165649&r1=165648&r2=165649&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/script/GetData.java (original)
+++ incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/script/GetData.java Mon May  2 10:24:30 2005
@@ -78,9 +78,6 @@
  *          ...
  *      &lt;/netui-data:repeater&gt;</pre>
  * @netui:tag name="getData" description="Evaluates an expression and places the result in the JSP's PageContext. Can be used to extract objects from forms, page flows, and other objects that can be databound.  You can then write a scriplet to access the data by using the getAttribute method of javax.servlet.jsp.PageContext."
- * @netui.tldx:tag requiredchild="#nothing"
- * renderer="workshop.netui.jspdesigner.tldx.GetDataRenderer"
- * bodycontentpref="empty"
  */
 public class GetData
         extends AbstractClassicTag {

Modified: incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/xml/SerializeXML.java
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/xml/SerializeXML.java?rev=165649&r1=165648&r2=165649&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/xml/SerializeXML.java (original)
+++ incubator/beehive/trunk/netui/src/tags-databinding/org/apache/beehive/netui/tags/databinding/xml/SerializeXML.java Mon May  2 10:24:30 2005
@@ -30,7 +30,6 @@
  *
  * @jsptagref.tagdescription A tag that serializes an XMLBean into the output of a JSP page in order to move data to the browser for data binding.
  * @netui:tag name="serializeXML" description="A tag that serializes an XMLBean into the output of a JSP page in order to move data to the browser for data binding."
- * @netui.tldx:tag whitespace="indent"
  */
 public class SerializeXML
         extends AbstractClassicTag {

Modified: incubator/beehive/trunk/netui/src/tags-html/build.xml
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/tags-html/build.xml?rev=165649&r1=165648&r2=165649&view=diff
==============================================================================
--- incubator/beehive/trunk/netui/src/tags-html/build.xml (original)
+++ incubator/beehive/trunk/netui/src/tags-html/build.xml Mon May  2 10:24:30 2005
@@ -41,7 +41,7 @@
             <fileset dir="${module.dir}" includes="**/*.gif"/>
         </copy>
 
-        <echo>Generate TLD and TLDx</echo>
+        <echo>Generate TLD</echo>
         <taskdef name="webdoclet" classname="xdoclet.modules.web.WebDocletTask" classpathref="webdoclet.dependency.path"/>
         <webdoclet
                 destdir="${build.lib.dir}"
@@ -65,16 +65,7 @@
                  validateXml="true"
                  packageName="org.apache.beehive.netui.tags"
             />
- 
-            <netuitldxgen
-                     xmlencoding="UTF-8"
-                     paletteGenerator="workshop.netui.jspdesigner.generators.NetuiPaletteGenerator"
-                     uri="http://beehive.apache.org/netui/tags-html-1.0"
-                     tldxVersion="1.0"
-                     filename="${netui-tags-html.tldx.name}"
-                     packageName="org.apache.beehive.netui.tags"
-            />
-        </webdoclet>
+         </webdoclet>
 
         <jar jarfile="${build.lib.dir}/${tags-html.jar.name}">
             <fileset dir="${classes.dir}/${module.name}"/>
@@ -95,6 +86,7 @@
     <target name="clean">
         <delete dir="${classes.dir}/${module.name}"/>
         <delete dir="${build.lib.dir}/${tags-html.jar.name}"/>
+        <delete dir="${build.lib.dir}/${netui-tags-html.tld.name}"/>
     </target>
 
 </project>