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

Added Files:
        TapestryInvokeListenerTag.java TapestryListEditTag.java 
        TapestryOnEventTag.java TapestryOptionTag.java 
        TapestryPostfieldTag.java 
Log Message:
Added a few tags

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

/**
 * Invokes a listener, with parameters, during the page render.
 * 
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestryInvokeListenerTag extends 
com.thoughtworks.qdox.model.DocletTag {
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();

    /**
     *  An object, or list of objects, provided as method parameters to the 
listener method.
     * 
     */
    String getParameters_();

    /**
     * No description available yet.
     *
     *
     * @qtags.required
     */
    String getListener();

}

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

/**
 * A looping component, like Foreach, which works well in a form because it 
stores each element as a hidden field.
 * 
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestryListEditTag extends 
com.thoughtworks.qdox.model.DocletTag {
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();

    /**
     * No description available yet.
     *
     *
     * @qtags.required
     */
    String getSource();

    /**
     * No description available yet.
     *
     */
    String getListener();

    /**
     * No description available yet.
     *
     *
     * @qtags.required
     */
    String getValue_();

    /**
     * No description available yet.
     *
     */
    String getIndex();

    /**
     * No description available yet.
     *
     */
    String getElement();

}

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

/**
 * This component serves as a container for one item that is listed as a choice 
in a Select.
 * A Select offers a selection of choices from which usersu may choose one or 
more items.
 * The select list is created using a select element which contains a 
collection of option elements.
 * A string or text describing the item appears between the opening and closing 
option tags.
 * 
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestryOptionTag extends 
com.thoughtworks.qdox.model.DocletTag {
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();

    /**
     *  The value attribute specifies the value to be used when setting the 
name variable.
     * When the user selects this option, the resulting value specified in the 
value attribute is used to set the Select element's name wml variable.
     * 
     */
    String getValue_();

}

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

/**
 * The onevent element binds a task to a particular intrinsic event for the 
immediately enclosing element, ie, specifying an onevent element inside an 
"XYZ" element associates an intrinsic event binding with the "XYZ" element.
 * The user agent must ignore any onevent element specifying a type that does 
not correspond to a legal intrinsic event for the immediately enclosing element.
 * 
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestryOnEventTag extends 
com.thoughtworks.qdox.model.DocletTag {
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();

    /**
     *  The type attribute indicates the name of the intrinsic event (ontimer, 
onenterforward, onenterbackward, onpick).
     * 
     *
     * @qtags.required
     */
    String getType();

}

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

/**
 * The postfield element specifies a field name and value for transmission to 
an origin server during an URL request.
 * 
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestryPostfieldTag extends 
com.thoughtworks.qdox.model.DocletTag {
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();

    /**
     *  Bind value to the variable that should recieve the user input string.
     * 
     *
     * @qtags.required
     */
    String getValue_();

    /**
     *  The name attribute specifies an WML variable name.
     * 
     *
     * @qtags.required
     */
    String getName_();

}



-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
xdoclet-plugins-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xdoclet-plugins-commits

Reply via email to