You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by mc...@apache.org on 2003/07/16 01:56:51 UTC

cvs commit: avalon-sandbox/meta/site/xdocs/tools/tags type.xml name.xml namespace.xml

mcconnell    2003/07/15 16:56:51

  Added:       meta/site/xdocs/tools/tags type.xml
  Removed:     meta/site/xdocs/tools/tags name.xml namespace.xml
  Log:
  Update to incorporate changes (migration of name, version and lifestyle under a single type tag).
  
  Revision  Changes    Path
  1.1                  avalon-sandbox/meta/site/xdocs/tools/tags/type.xml
  
  Index: type.xml
  ===================================================================
  <?xml version="1.0"?>
  
  <document>
  
    <properties>
      <author email="mcconnell@apache.org">Stephen McConnell</author>
      <title>Javadoc Tag Specification</title>
    </properties>
  
    <body>
  
      <section name="Javadoc Tags">
  
        <subsection name="Type Tag">
  <p>The type tag declares a jave source to a component type.  The type tag is a required when generating a type descriptor.</p>
  
  <source><![CDATA[
  package net.osm;
  
  /**
   * Example of the declaration of named component type.
   *
   * @avalon.type version="1.0" name="sample" lifestyle="singleton"
   */
  public class DefaultComponent
  {
    ...
  }
  ]]></source>
  
  <p>Generated meta-info type descriptor:</p>
  
  <source><![CDATA[
  <type>
    <info>
      <version>1.0.0</version>
      <name>sample</name>
      <lifestyle>singleton</lifestyle>
    </info>
  </type>
  ]]></source>
  
        </subsection>
      </section>
    </body>
  
    <footer>
      <legal>
        Copyright (c) @year@ The Avalon Apache Project All rights reserved.
        $Revision: 1.1 $ $Date: 2003/07/15 23:56:51 $
      </legal>
    </footer>
  
  </document>
  
  
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: cvs-unsubscribe@avalon.apache.org
For additional commands, e-mail: cvs-help@avalon.apache.org