Skip to content

Commit

Permalink
reorg, reorg, reorg
Browse files Browse the repository at this point in the history
  • Loading branch information
Gavin King committed Nov 10, 2009
1 parent c7a683b commit ba4cad2
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion reference/en-US/beans.xml
@@ -1,7 +1,7 @@
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [ ]>
<chapter id="beanscdi">
<title>Beans in CDI</title>
<title>More about beans</title>

<para>
A bean is usually an application class that contains business logic. It may be called directly from Java code,
Expand Down
2 changes: 1 addition & 1 deletion reference/en-US/events.xml
Expand Up @@ -240,7 +240,7 @@ public @interface Role {
</section>

<section>
<title>Multiple event bindings</title>
<title>Multiple event qualifiers</title>

<para>Event qualifier types may be combined, for example:</para>

Expand Down
6 changes: 3 additions & 3 deletions reference/en-US/injection.xml
Expand Up @@ -261,6 +261,8 @@ PaymentProcessor getPaymentProcessor(@Synchronous PaymentProcessor syncPaymentPr
may be multiple alterative implementations of <literal>@Asynchronous PaymentProcessor</literal>!
</para>

</section>

<section>
<title>Qualifiers with members</title>

Expand Down Expand Up @@ -299,7 +301,7 @@ public @interface PayBy {
</section>

<section>
<title>Combining qualifiers</title>
<title>Multiple qualifiers</title>

<para>
An injection point may specify multiple qualifiers:
Expand All @@ -318,8 +320,6 @@ public class SynchronousReliablePaymentProcessor implements PaymentProcessor {
}]]></programlisting>

</section>

</section>

<section id="alternatives">
<title>Alternatives</title>
Expand Down
4 changes: 2 additions & 2 deletions reference/en-US/scopescontexts.xml
Expand Up @@ -307,6 +307,8 @@ public class OrderBuilder {
CDI makes it easy to obtain a dependent instance of a bean, even if the bean is already declared as a bean with
some other scope type.
</para>

</section>

<section>
<title>The <literal>@New</literal> qualifier</title>
Expand Down Expand Up @@ -348,8 +350,6 @@ public class Calculator { ... }]]></programlisting>

</section>

</section>

<!--
vim:et:ts=3:sw=3:tw=120
-->
Expand Down
7 changes: 4 additions & 3 deletions reference/en-US/weldexamples.xml
Expand Up @@ -398,8 +398,10 @@ public class Game implements Serializable {
interface name. You generally don't need to access this interface, but Weld makes use of it.
</para>

</section>

</section>

</section>

<section id="numberguess-wicket">
<title>The numberguess example for Apache Wicket</title>
<para>
Expand Down Expand Up @@ -1123,7 +1125,6 @@ public class Game implements Serializable
</programlistingco>

</section>
</section>

<section id="translator">
<title>The translator example in depth</title>
Expand Down

0 comments on commit ba4cad2

Please sign in to comment.