You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by mc...@apache.org on 2008/03/20 14:10:12 UTC

svn commit: r639280 - in /incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca: core/ event/ invocation/ management/ runtime/ store/ work/

Author: mcombellack
Date: Thu Mar 20 06:10:11 2008
New Revision: 639280

URL: http://svn.apache.org/viewvc?rev=639280&view=rev
Log:
Minor JavaDoc updates and spelling corrections

Modified:
    incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/core/ModuleActivator.java
    incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/event/EventPublisher.java
    incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/invocation/Phase.java
    incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/management/ManagementService.java
    incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeComponent.java
    incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeComponentContext.java
    incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeComponentReference.java
    incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeComponentService.java
    incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/store/StoreMonitor.java
    incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/work/NotificationListener.java
    incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/work/WorkScheduler.java

Modified: incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/core/ModuleActivator.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/core/ModuleActivator.java?rev=639280&r1=639279&r2=639280&view=diff
==============================================================================
--- incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/core/ModuleActivator.java (original)
+++ incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/core/ModuleActivator.java Thu Mar 20 06:10:11 2008
@@ -32,7 +32,7 @@
  * will be used to invoke all the methods during different phases of the module 
  * activation. Note that the start and stop methods defined by this interface
  * take a reference to the Tuscany SCA runtime ExtensionPointRegistry. This 
- * gives the ModuleActivator the oppotunity to add extension points to the
+ * gives the ModuleActivator the opportunity to add extension points to the
  * registry as it is requested to start up and remove them when it is requested
  * to shut down.
  * 
@@ -42,7 +42,7 @@
 
     /**
      * This method is invoked when the module is started by the Tuscany system.
-     * It can be used by this module to registr extensions against extension
+     * It can be used by this module to register extensions against extension
      * points.
      * 
      * @param registry The extension point registry

Modified: incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/event/EventPublisher.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/event/EventPublisher.java?rev=639280&r1=639279&r2=639280&view=diff
==============================================================================
--- incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/event/EventPublisher.java (original)
+++ incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/event/EventPublisher.java Thu Mar 20 06:10:11 2008
@@ -27,8 +27,8 @@
 public interface EventPublisher {
 
     /**
-     * Publish an event to all regisitered listeners
-     * @param object The event to publich
+     * Publish an event to all registered listeners
+     * @param object The event to publish
      */
     void publish(Event object);
 

Modified: incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/invocation/Phase.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/invocation/Phase.java?rev=639280&r1=639279&r2=639280&view=diff
==============================================================================
--- incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/invocation/Phase.java (original)
+++ incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/invocation/Phase.java Thu Mar 20 06:10:11 2008
@@ -25,7 +25,7 @@
  * @version $Rev$ $Date$
  */
 public interface Phase {
-    // The fisrt phase for outgoing invocations via a reference
+    // The first phase for outgoing invocations via a reference
     String REFERENCE = "component.reference";
 
     // data transformation and validation

Modified: incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/management/ManagementService.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/management/ManagementService.java?rev=639280&r1=639279&r2=639280&view=diff
==============================================================================
--- incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/management/ManagementService.java (original)
+++ incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/management/ManagementService.java Thu Mar 20 06:10:11 2008
@@ -21,7 +21,7 @@
 import org.apache.tuscany.sca.runtime.RuntimeComponent;
 
 /**
- * Interface for the management service abstraction. The implementaion
+ * Interface for the management service abstraction. The implementation
  * could be based on a variety of technologies including JMX, WSDM,
  * SNMP etc.
  *

Modified: incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeComponent.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeComponent.java?rev=639280&r1=639279&r2=639280&view=diff
==============================================================================
--- incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeComponent.java (original)
+++ incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeComponent.java Thu Mar 20 06:10:11 2008
@@ -40,7 +40,7 @@
     void setImplementationProvider(ImplementationProvider implementationProvider);
 
     /**
-     * Get the implementation-specific configuation for this component
+     * Get the implementation-specific configuration for this component
      * @return The implementation provider for this component
      */
     ImplementationProvider getImplementationProvider();

Modified: incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeComponentContext.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeComponentContext.java?rev=639280&r1=639279&r2=639280&view=diff
==============================================================================
--- incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeComponentContext.java (original)
+++ incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeComponentContext.java Thu Mar 20 06:10:11 2008
@@ -56,7 +56,7 @@
     void write(RuntimeComponentReference reference, Writer writer) throws IOException;
 
     /**
-     * Get the callable reference for a given component reference
+     * Get the CallableReference for a given component reference
      * @param <B>
      * @param businessInterface The business interface
      * @param reference The reference to be wired
@@ -83,7 +83,7 @@
                                                 RuntimeComponentService service);
 
     /**
-     * Create a callable reference for the given component service
+     * Create a CallableReference for the given component service
      * @param <B>
      * @param businessInterface
      * @param component

Modified: incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeComponentReference.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeComponentReference.java?rev=639280&r1=639279&r2=639280&view=diff
==============================================================================
--- incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeComponentReference.java (original)
+++ incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeComponentReference.java Thu Mar 20 06:10:11 2008
@@ -79,7 +79,7 @@
     /**
      * Get a list of policy providers for the given binding
      * @param binding The assembly model binding
-     * @return A list of policy proviers for the given binding
+     * @return A list of policy providers for the given binding
      */
     List<PolicyProvider> getPolicyProviders(Binding binding);    
     

Modified: incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeComponentService.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeComponentService.java?rev=639280&r1=639279&r2=639280&view=diff
==============================================================================
--- incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeComponentService.java (original)
+++ incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/runtime/RuntimeComponentService.java Thu Mar 20 06:10:11 2008
@@ -53,7 +53,7 @@
     RuntimeWire getRuntimeWire(Binding binding);
     
     /**
-     * Get the callback wires assoicated with this service
+     * Get the callback wires associated with this service
      * 
      * @return The list of runtime callback wires
      */
@@ -131,7 +131,7 @@
     /**
      * Get a list of policy providers for the given binding
      * @param binding The assembly model binding
-     * @return A list of policy proviers for the given binding
+     * @return A list of policy providers for the given binding
      */
     List<PolicyProvider> getPolicyProviders(Binding binding);
 

Modified: incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/store/StoreMonitor.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/store/StoreMonitor.java?rev=639280&r1=639279&r2=639280&view=diff
==============================================================================
--- incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/store/StoreMonitor.java (original)
+++ incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/store/StoreMonitor.java Thu Mar 20 06:10:11 2008
@@ -20,7 +20,7 @@
 
 
 /**
- * A generic monintor interface for services to log events
+ * A generic monitor interface for services to log events
  * 
  * @version $Rev$ $Date$
  */

Modified: incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/work/NotificationListener.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/work/NotificationListener.java?rev=639280&r1=639279&r2=639280&view=diff
==============================================================================
--- incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/work/NotificationListener.java (original)
+++ incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/work/NotificationListener.java Thu Mar 20 06:10:11 2008
@@ -19,7 +19,7 @@
 package org.apache.tuscany.sca.work;
 
 /**
- * A callback inyterface that can be optionally used for registering 
+ * A callback interface that can be optionally used for registering 
  * interest in status of asynchronously scheduled unit of work.
  *
  */
@@ -35,7 +35,7 @@
     /**
      * Callback method when the unit of work is successfully completed.
      * 
-     * @param work Work that was succesfully completed.
+     * @param work Work that was successfully completed.
      */
     void workCompleted(T work);
     
@@ -54,7 +54,7 @@
     void workRejected(T work);
     
     /**
-     * Callnack when the unit of work fails to complete.
+     * Callback when the unit of work fails to complete.
      * 
      * @param work Unit of work that failed to complete.
      * @param error Error that caused the unit of work to fail.

Modified: incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/work/WorkScheduler.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/work/WorkScheduler.java?rev=639280&r1=639279&r2=639280&view=diff
==============================================================================
--- incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/work/WorkScheduler.java (original)
+++ incubator/tuscany/java/sca/modules/core-spi/src/main/java/org/apache/tuscany/sca/work/WorkScheduler.java Thu Mar 20 06:10:11 2008
@@ -19,13 +19,13 @@
 package org.apache.tuscany.sca.work;
 
 /**
- * Defines the contract for scheduling asychronous units of work.
+ * Defines the contract for scheduling asynchronous units of work.
  * 
  * <p>
  * Units of work can be scheduled with an optional <code>NotificationListener</code>.
  * If a notification listener is specified, the caller will be notified regarding the 
  * status of the work. The unit of work can either be completed, rejected or completed 
- * with an error. If the work completed with an error, the caller is notfied with the 
+ * with an error. If the work completed with an error, the caller is notified with the 
  * error details.
  * </p>
  *



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org