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

Added Files:
        TapestryTimerTag.java TapestryUploadTag.java 
        TapestryValidFieldTag.java 
Log Message:
Completed framework component tags

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

/**
 * The Timer element declares a card timer, which exposes a means of processing 
inactivity or idle time.
 * The timer is initialised and started at card entry and is stopped when the 
card is exited.
 * 
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestryTimerTag extends com.thoughtworks.qdox.model.DocletTag 
{
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();

    /**
     *  The name attribute specifies the name of the variable to be set with 
the value of the timer.
     * The name variable's value is used to set the timeout period upon timer 
initialisation.
     * The variable named by the name attribute will be set with the current 
timer value when the card is exited or when the timer expires.
     * For example, if the timer expires, the name variable is set to a value 
of "0".
     * 
     */
    String getName_();

    /**
     *  The value attribute indicates the default value of the variable named 
in the name attribute.
     * When the timer is initialised and the variable named in the name 
attribute is not set, the name variable is assigned the value specified in the 
value attribute.
     * If the name variable already contains a value, the value attribute is 
ignored.
     * If the name attribute is not specified, the timeout is always 
initialised to the value specified in the value attribute.
     * 
     */
    String getValue_();

}

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

/**
 * A text input field that can validate input.
 * ValidField is deprecated; Tapestry 4.
 *0 adds support for this kind of validation to existing components such as 
TextField and TextArea.
 * 
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestryValidFieldTag extends 
com.thoughtworks.qdox.model.DocletTag {
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();

    /**
     *  Converts value to a string and parses strings back into object values.
     * 
     *
     * @qtags.required
     */
    String getValidator();

    /**
     *  Name used by FieldLabel and when generating validation error messages.
     * 
     *
     * @qtags.required
     */
    String getDisplayName();

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

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

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

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

}

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

/**
 * Allows a file to be uploaded as part of a form.
 * 
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestryUploadTag extends 
com.thoughtworks.qdox.model.DocletTag {
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();

    /**
     *  Parameter updated with the information (filename and content) of the 
file when the form is submitted.
     * 
     *
     * @qtags.required
     */
    String getFile();

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

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

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

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

}



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