You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by ke...@apache.org on 2005/02/28 23:24:06 UTC

svn commit: r155707 - incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/controls/controlsProgramming.xml

Author: kentam
Date: Mon Feb 28 14:24:04 2005
New Revision: 155707

URL: http://svn.apache.org/viewcvs?view=rev&rev=155707
Log:
BEEHIVE-197: usage of @ControlInterface should be @ControlExtension

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=155706&r2=155707
==============================================================================
--- 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 Mon Feb 28 14:24:04 2005
@@ -636,9 +636,9 @@
 <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.ControlInterface;
+import org.apache.beehive.controls.api.bean.ControlExtension;
 
-<strong>@ControlInterface</strong>
+<strong>@ControlExtension</strong>
 @Destination(type=JmsMessageControl.QUEUE, name="queue.orders")
 <strong>public interface OrderQueue extends JmsMessageControl</strong>
 {
@@ -650,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.ControlInterface;
+import org.apache.beehive.controls.api.bean.ControlExtension;
 
-@ControlInterface
+@ControlExtension
 @Destination(type=JmsMessageControl.QUEUE, name="queue.orders")
 <strong>public interface OrderQueue extends JmsMessageControl</strong>
 {