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-serv13514/xdoclet-plugins/plugin-tapestry/src/main/java/org/xdoclet/plugin/tapestry/qtags

Modified Files:
        TapestryIf.java TapestryInjectStateTag.java 
        TapestryInjectTag.java 
Added Files:
        TapestryForeachTag.java TapestryInsertTag.java 
Log Message:
Added Insert and Foreach components
Fixed non ASCII chars in my name :-)

Index: TapestryInjectStateTag.java
===================================================================
RCS file: 
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-tapestry/src/main/java/org/xdoclet/plugin/tapestry/qtags/TapestryInjectStateTag.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** TapestryInjectStateTag.java 11 Oct 2005 23:15:58 -0000      1.2
--- TapestryInjectStateTag.java 12 Oct 2005 15:29:23 -0000      1.3
***************
*** 12,16 ****
   *
   * @qtags.location method
!  * @author Paolo Don�
   */
  public interface TapestryInjectStateTag extends 
com.thoughtworks.qdox.model.DocletTag {
--- 12,16 ----
   *
   * @qtags.location method
!  * @author Paolo Dona
   */
  public interface TapestryInjectStateTag extends 
com.thoughtworks.qdox.model.DocletTag {

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

/**
 * Emits a value into the response page.
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestryInsertTag extends 
com.thoughtworks.qdox.model.DocletTag {
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();
    
    /**
     * The value to be emitted.  Non-strings are converted to strings.
     */
    String getValue_();
    
    /**
     * A Format object used to convert the value to a string.
     */
    String getFormat();
    
    /**
     *If false (the default), then HTML characters in the value are escaped.  If
     *true, then value is emitted exactly as is.
     */
    String getRaw();
    
    /**
     * If specified, then any output is wrapped in an HTML span tag with the 
given CSS class.
     */
    String getClass_();

}
Index: TapestryIf.java
===================================================================
RCS file: 
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-tapestry/src/main/java/org/xdoclet/plugin/tapestry/qtags/TapestryIf.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** TapestryIf.java     11 Oct 2005 23:15:58 -0000      1.2
--- TapestryIf.java     12 Oct 2005 15:29:23 -0000      1.3
***************
*** 13,17 ****
   *
   * @qtags.location class
!  * @author Paolo Don�
   */
  public interface TapestryIf extends com.thoughtworks.qdox.model.DocletTag {
--- 13,17 ----
   *
   * @qtags.location class
!  * @author Paolo Dona
   */
  public interface TapestryIf extends com.thoughtworks.qdox.model.DocletTag {

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

/**
 * Loops over a collection of source values.
 * May also emulate an element (like an Any component).
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestryForeachTag extends 
com.thoughtworks.qdox.model.DocletTag {
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();
    
    /**
     * The source of values, a Java collection or array.
     * @qtags.required
     */
    String getSource();
    
    /**
     * If provided, then on each iteration, the value property is updated.
     */
    String getValue_();
    
    /**
     * If provided, then the index of the loop is set on each iteration.
     */
    String getIndex();
    
    /**
     * If provided, then the Foreach creates an element wrapping its content.
     * Informal parameters become attributes of the element.
     */
    String getElement();
}
Index: TapestryInjectTag.java
===================================================================
RCS file: 
/cvsroot/xdoclet-plugins/xdoclet-plugins/plugin-tapestry/src/main/java/org/xdoclet/plugin/tapestry/qtags/TapestryInjectTag.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** TapestryInjectTag.java      11 Oct 2005 23:15:58 -0000      1.2
--- TapestryInjectTag.java      12 Oct 2005 15:29:23 -0000      1.3
***************
*** 11,15 ****
   * obtained from HiveMind.
   * @qtags.location class
!  * @author Paolo Don�
   */
  public interface TapestryInjectTag extends 
com.thoughtworks.qdox.model.DocletTag {
--- 11,15 ----
   * obtained from HiveMind.
   * @qtags.location class
!  * @author Paolo Dona
   */
  public interface TapestryInjectTag extends 
com.thoughtworks.qdox.model.DocletTag {



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