Update of /cvsroot/springframework/spring/docs/reference/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26600/docs/reference/src
Modified Files:
metadata.xml new-in-2.0.xml
Log Message:
[SPR-1921] Documented the @Required annotation.
Index: new-in-2.0.xml
===================================================================
RCS file: /cvsroot/springframework/spring/docs/reference/src/new-in-2.0.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** new-in-2.0.xml 19 Apr 2006 14:26:45 -0000 1.3
--- new-in-2.0.xml 19 Apr 2006 16:25:33 -0000 1.4
***************
*** 335,338 ****
--- 335,341 ----
<xref linkend="jdbc-SimpleJdbcTemplate" />
</listitem>
+ <listitem>
+ <xref linkend="metadata-annotations-required" />
+ </listitem>
</itemizedlist>
</section>
Index: metadata.xml
===================================================================
RCS file: /cvsroot/springframework/spring/docs/reference/src/metadata.xml,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** metadata.xml 10 Feb 2006 16:49:48 -0000 1.13
--- metadata.xml 19 Apr 2006 16:25:32 -0000 1.14
***************
*** 1,25 ****
! <?xml version="1.0" encoding="UTF-8"?>
<chapter id="metadata">
! <title>Source Level Metadata Support</title>
!
! <sect1 id="metadata-concepts">
! <title>Source-level metadata</title>
!
! <para>Source-level metadata is the
! addition of <emphasis>attributes</emphasis> or
! <emphasis>annotations</emphasis> to program elements: usually, classes
[...1508 lines suppressed...]
! <section>
! <title>Adding support for additional metadata APIs</title>
! <para>
! Should you wish to provide support for another metadata API it is
! easy to do so.
! </para>
! <para>
! Simply implement the
! <classname>org.springframework.metadata.Attributes</classname> interface as a
! facade for your metadata API. You can then include this object in your
! bean definitions as shown above.
! </para>
! <para>
! All framework services that use metadata, such as AOP
! metadata-driven autoproxying, will then automatically be able to use your
! new metadata provider.
! </para>
! </section>
</chapter>
\ No newline at end of file
|