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

Added Files:
        TapestryInsertTextTag.java 
Log Message:
Added @tapestry.insert-text tag

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

/**
 * Inserts line-oriented text into the response HTML, inserting additional 
markup to delimit lines.
 * 
 *
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestryInsertTextTag extends 
com.thoughtworks.qdox.model.DocletTag {
    /**
     * The id of the component
     * @qtags.required
     */
    String getId();

    /**
     *  The text to insert.
     * 
     *
     * @qtags.required
     */
    String getValue_();

    /**
     *  Determines which mode to use: breaks after each line, or wrap each line 
as a paragraph.
     * The default is breaks.
     * 
     */
    String getMode();

    /**
     *  If false (the default), then the rendered text is filtered.
     * If true, then the text is not filtered (appropriate when the value 
parameter contains markup).
     * 
     */
    String getRaw();

}



-------------------------------------------------------
This SF.Net email is sponsored by the JBoss Inc.  Get Certified Today
Register for a JBoss Training Course.  Free Certification Exam
for All Training Attendees Through End of 2005. For more info visit:
http://ads.osdn.com/?ad_id=7628&alloc_id=16845&op=click
_______________________________________________
xdoclet-plugins-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xdoclet-plugins-commits

Reply via email to