Author: steveh
Date: Wed Feb 2 13:55:24 2005
New Revision: 151068
URL: http://svn.apache.org/viewcvs?view=rev&rev=151068
Log:
Fix for BEEHIVE-117: ControlsProgramming doc: error in control extension sample
Modified:
incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/controls/controlsProgramming.xml
Modified:
incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/controls/controlsProgramming.xml
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/controls/controlsProgramming.xml?view=diff&r1=151067&r2=151068
==============================================================================
---
incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/controls/controlsProgramming.xml
(original)
+++
incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/controls/controlsProgramming.xml
Wed Feb 2 13:55:24 2005
@@ -629,12 +629,14 @@
<p>For this section, weÃÂÂll start with the how an extension is defined,
look at the authoring model for defining an extensible Control type, and
finally show the client view of using an extended type.</p>
<section>
<title>11.1 Defining an Extended Interface for a Control
Type</title>
- <p>An extension to a base Control type that defines a specific
resource use case is created by defining a new Control type that derives from
the original type and is annotated with the ControlExtension annotation
type:</p>
+ <p>An extension to a base Control type that defines a specific
resource use case is
+created by defining a new Control type that derives from the original type and
is annotated with the
+ControlExtension annotation type:</p>
<p><strong>Declaring a Control Extension (Control Extension
Interface)</strong></p>
<source>package org.apache.beehive.controls.examples;
-import org.apache.beehive.controls.api.bean.ControlExtension;
+import org.apache.beehive.controls.api.bean.ControlInterface;
<strong>@ControlInterface</strong>
@Destination(type=JmsMessageControl.QUEUE, name="queue.orders")
@@ -648,9 +650,9 @@
<p><strong>Declaring Extended Operations with Properties (Control Extension
Interface)</strong></p>
<source>package org.apache.beehive.controls.examples;
-import org.apache.beehive.controls.api.bean.ControlExtension;
+import org.apache.beehive.controls.api.bean.ControlInterface;
[EMAIL PROTECTED]
[EMAIL PROTECTED]
@Destination(type=JmsMessageControl.QUEUE, name="queue.orders")
<strong>public interface OrderQueue extends JmsMessageControl</strong>
{