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

Added Files:
        TapestryRenderBlockTag.java TapestryRenderBodyTag.java 
        TapestryRequestDisplayTag.java TapestryRolloverTag.java 
        TapestryScriptTag.java TapestrySelectTag.java 
        TapestrySelectionFieldTag.java TapestrySetvarTag.java 
        TapestryShellTag.java TapestrySubmitTag.java 
Log Message:
Added a few tags

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

/**
 * The WMLSelect element lets users pick from a list of options.
 * Each option is specified by an Option element.
 * Each Option element may have one line of formatted text (which may be 
wrapped or truncated by the user agent if too long).
 * Option elements may be organised into hierarchical groups using the 
OptionGroup element.
 * 
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestrySelectTag extends 
com.thoughtworks.qdox.model.DocletTag {
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();

    /**
     *  This attribute indicates that the select list should accept multiple 
selections.
     * When not set, the select list should only accept a single selected 
option.
     * 
     */
    String getMultiple();

    /**
     *  This attribute specifies a title for this element, which may be used in 
the presentation of this object.
     * This attribute specifies a title for this element, which may be used in 
the presentation of this object.
     * 
     */
    String getTitle();

    /**
     *  The name attribute indicates the name of the variable to set with the 
result of the selection.
     * The variable is set to the string value of the chosen option element, 
which is specified with the value attribute.
     * The name variable's value is used to pre-select options in the select 
list.
     * 
     */
    String getName_();

    /**
     *  The value attribute indicates the default value of the variable named 
in the name attribute.
     * When the element is displayed, and the variable named in the name 
attribute is not set, the name variable may be assigned the value specified in 
the value attribute, depending on the values defined in iname and ivalue.
     * If the name variable already contains a value, the value attribute is 
ignored.
     * Any application of the default value is done before the list is 
pre-selected with the value of the name variable.
     * If this element allows the selection of multiple options, the result of 
the user's choice is a list of all selected values, separated by the semicolon 
character.
     * The name variable is set with this result.
     * In addition, the value attribute is interpreted as a semicolon-separated 
list of pre-selected options.
     * 
     */
    String getValue_();

}

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

/**
 * A complex image component which must be wrapped by a link component.
 * Rollovers can reflect the enabled status of the link, and display rollover 
effects.
 * 
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestryRolloverTag extends 
com.thoughtworks.qdox.model.DocletTag {
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();

    /**
     *  The normal or default image to display, used as a default image for the 
other parameters.
     * 
     *
     * @qtags.required
     */
    String getImage();

    /**
     *  If specified, provides an image displayed when the cursor is moved over 
the link.
     * 
     */
    String getMouseOver();

    /**
     *  If specified, provides an image displayed when the cursor is moved off 
of the link.
     * 
     */
    String getMouseOut();

    /**
     *  If specified, provides an image displayed when the surrounding link is 
disabled.
     * 
     */
    String getDisabled();

}

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

/**
 * Displays an HTML representation of the request, session, context and servlet.
 * 
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestryRequestDisplayTag extends 
com.thoughtworks.qdox.model.DocletTag {
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();

}

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

/**
 * Creates a labeled submit button within a form.
 * 
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestrySubmitTag extends 
com.thoughtworks.qdox.model.DocletTag {
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();

    /**
     *  Deprecated in 4.
     *0.
     * An alternate way to specify the value attribute, which is the label used 
on the button in the browser (as well as the value supplied in the query 
parameter on form submit).
     * 
     */
    String getLabel();

    /**
     *  If true, then the component is disabled, which will be reflected in the 
output submit element.
     * Additionally, the component will not respond during the form submission.
     * 
     */
    String getDisabled();

    /**
     *  If bound, then this parameter will be updated with the value of the tag 
parameter, if the Submit is triggered.
     * 
     */
    String getSelected();

    /**
     *  A tag value used to identify this Submit as the triggered component.
     * 
     */
    String getTag();

    /**
     *  A listener that is notified if this component is triggered.
     * 
     */
    String getListener();

    /**
     *  A listener that is notified if this component is triggered just before 
the form's listener, after all components enclosed by the Form have had a 
chance to update their properties.
     * 
     */
    String getAction();

    /**
     *  An object, or list of objects, gathered when the button is triggered 
and made available as listener parameters in the request cycle, making the 
parameters available to a deferred listener.
     * 
     */
    String getParameters_();

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

}

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

/**
 [EMAIL PROTECTED]: ADD COMPONENT DESCRIPTION
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestryRenderBlockTag extends 
com.thoughtworks.qdox.model.DocletTag {
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();

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

}

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

/**
 * The setvar element specifies the variable to set in the current browser 
context as a side effect of executing a task.
 * 
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestrySetvarTag extends 
com.thoughtworks.qdox.model.DocletTag {
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();

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

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

}

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

/**
 * SelectionField specifies a postfield element and it is used to complement 
the PropertySelection component.
 * 
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestrySelectionFieldTag extends 
com.thoughtworks.qdox.model.DocletTag {
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();

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

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

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

}

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

/**
 * Provides the outer tags in an HTML page: <html>, <head> and 
<title>.
 * 
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestryShellTag extends com.thoughtworks.qdox.model.DocletTag 
{
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();

    /**
     *  The title for the page.
     * 
     *
     * @qtags.required
     */
    String getTitle();

    /**
     *  If specified, provides an external stylesheet for the page.
     * 
     */
    String getStylesheet();

    /**
     *  Array or collection of stylesheet assets.
     * 
     */
    String getStylesheets();

    /**
     *  Determines whether to render an http-equiv element with the Content 
Type of this response.
     * 
     */
    String getRenderContentType();

    /**
     *  If specified, the page will refresh itself after the specified delay 
(in seconds).
     * 
     */
    String getRefresh();

    /**
     *  If specified, the delegate is rendered before the close of the 
<head> tag (typically used to provide <meta> tags).
     * 
     */
    String getDelegate();

}

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

/**
 [EMAIL PROTECTED]: ADD COMPONENT DESCRIPTION
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestryRenderBodyTag extends 
com.thoughtworks.qdox.model.DocletTag {
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();

}

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

/**
 * Constructs dynamic JavaScript which is added to the page.
 * 
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestryScriptTag extends 
com.thoughtworks.qdox.model.DocletTag {
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();

    /**
     *  The resource path of the script to execute.
     * 
     *
     * @qtags.required
     */
    String getScript();

    /**
     *  Provides a base set of symbols to which, in a copy, are added any 
informal parameters.
     * 
     */
    String getSymbols();

}



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