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

Added Files:
        TapestryMetaTag.java 
Log Message:
Added @tapestry.meta tag

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

/**
 * Contained by: (many other elements)
 *
 * Defines a key/value pair associated with the application or component 
specification.  Properties
 * are used to capture information that doesn't fit into the DTD.  The value 
for the property is
 * either the value attribute, or the PCDATA wrapped by the property tag 
 * (which is trimmed of leading and trailing whitespace).
 *
 * This should not be confused with several other tags which are used to set 
JavaBeans properties
 * of various objects.  The <property> tag exists to allow meta-data to be 
stored in the specification.
 * 
 * @qtags.location class
 * @author Paolo Dona
 */
public interface TapestryMetaTag extends com.thoughtworks.qdox.model.DocletTag {
    /**
     * The name of the property to set.
     * @qtags.required
     */
    String getKey();

    /**
     * The value of the property.
     * @qtags.required
     */
    String getValue_();
}


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