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

Modified Files:
        TapestryForeachTag.java 
Added Files:
        TapestryCheckboxTag.java 
Log Message:
Added @tapestry.chechbox tag
Deprecated @tapestry.foreach tag

--- NEW FILE: TapestryCheckboxTag.java ---
/*
 * Copyright (c) 2003-2005
 * XDoclet Team
 * All rights reserved.
 */
package org.xdoclet.plugin.tapestry.qtags;

/**
 * Implements a checkbox within a Form.
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestryCheckboxTag extends 
com.thoughtworks.qdox.model.DocletTag {
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();

    /**
     * The property read and updated by the Checkbox.
     * @qtags.required
     */
    String getValue_();

    /**
     * If true, then the checkbox will be disabled and any input from the 
     * checkbox will be ignored.
     */
    String getDisabled();

    String getValidators();
}
Index: TapestryForeachTag.java
===================================================================
RCS file: 
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-tapestry/src/main/java/org/xdoclet/plugin/tapestry/qtags/TapestryForeachTag.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** TapestryForeachTag.java     12 Oct 2005 15:29:23 -0000      1.1
--- TapestryForeachTag.java     18 Oct 2005 08:18:42 -0000      1.2
***************
*** 11,14 ****
--- 11,15 ----
   *
   * @qtags.location class
+  * @qtags.deprecated
   * @author Paolo Dona
   */



-------------------------------------------------------
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