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

Added Files:
        TapestryHiddenTag.java TapestryTextAreaTag.java 
Log Message:
Added @tapestry.hidden tag
Added @tapestry.text-area tag

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

/**
 * Stores a value in a hidden field of the form.
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestryHiddenTag extends 
com.thoughtworks.qdox.model.DocletTag {
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();

    /**
     * Value to save in the form.
     * @qtags.required
     */
    String getValue_();

    /**
     *Listener notified after the value is restored.
     */
    String getListener();
    
    String getEncode();
}
--- NEW FILE: TapestryTextAreaTag.java ---
/*
 * Copyright (c) 2003-2005
 * XDoclet Team
 * All rights reserved.
 */
package org.xdoclet.plugin.tapestry.qtags;

/**
 * A multi-line text area.
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestryTextAreaTag extends 
com.thoughtworks.qdox.model.DocletTag {
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();

    /**
     * The multi-line string to be read and updated.
     * @qtags.required
     */
    String getValue_();

    /**
     * If true, then the disabled attribute will be written on render, and the
     * TextField will not update its value parameter when the form is submitted.
     */
    String getDisabled();

    /**
     * The name of the field, which may be used by a FieldLabel.
     */
    String getDisplayName ();

    String getTranslator();
    String getValidators();
}


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