hlship 2003/09/02 14:13:04 Modified: hivemind/src/java/org/apache/commons/hivemind ServiceExtensionPoint.java hivemind/src/java/org/apache/commons/hivemind/service MethodFab.java NameLookup.java RemoteExceptionCoordinator.java hivemind/src/java/org/apache/commons/hivemind/impl ServiceExtensionPointImpl.java hivemind/src/java/org/apache/commons/hivemind/service/impl AbstractServiceInterceptorFactory.java MethodFabImpl.java Added: hivemind/src/java/org/apache/commons/hivemind package.html hivemind/src/java/org/apache/commons/hivemind/schema package.html hivemind/src/java/org/apache/commons/hivemind/service package.html hivemind/src/java/org/apache/commons/hivemind/impl package.html hivemind/src/java/org/apache/commons/hivemind/parse package.html hivemind/src/java/org/apache/commons/hivemind/service/impl package.html hivemind/src/java/org/apache/commons/hivemind/util package.html hivemind/src/java/org/apache/commons/hivemind/schema/impl package.html hivemind/src/java/org/apache/commons/hivemind/ant package.html hivemind/src/java/org/apache/commons/hivemind/schema/rules package.html Log: Fix up Javadoc errors, add package documentation. Revision Changes Path 1.7 +2 -2 jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/ServiceExtensionPoint.java Index: ServiceExtensionPoint.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/ServiceExtensionPoint.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- ServiceExtensionPoint.java 30 Aug 2003 14:29:52 -0000 1.6 +++ ServiceExtensionPoint.java 2 Sep 2003 21:13:03 -0000 1.7 @@ -60,7 +60,7 @@ import org.apache.commons.hivemind.schema.Schema; /** - * Sub-interface of [EMAIL PROTECTED] org.apache.commons.hivemind.ExtensionPoint} + * Sub-interface of [EMAIL PROTECTED] org.apache.commons.hivemind.GenericExtensionPoint} * that defines a service extension point. A service may have * a single factory contribution, and any number of interceptor * contributions. 1.1 jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/package.html Index: package.html =================================================================== <!-- $Id: package.html,v 1.1 2003/09/02 21:13:03 hlship Exp $ --> <body> The main HiveMind package. </body> 1.1 jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/schema/package.html Index: package.html =================================================================== <!-- $Id: package.html,v 1.1 2003/09/02 21:13:03 hlship Exp $ --> <body> Interfaces defining [EMAIL PROTECTED] org.apache.commons.hivemind.schema.Schema} support (used to process extension point contributions and service parameters). </body> 1.3 +3 -4 jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/service/MethodFab.java Index: MethodFab.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/service/MethodFab.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- MethodFab.java 30 Aug 2003 14:29:53 -0000 1.2 +++ MethodFab.java 2 Sep 2003 21:13:03 -0000 1.3 @@ -59,9 +59,8 @@ /** * Represents a created method on a class; used to add catch handlers. - * @see org.apache.commons.hivemind.service.ClassFab#addMethod(String, Class, Class[], Class[], String) - * - * @author Howard Lewis Ship + * @see org.apache.commons.hivemind.service.ClassFab#addMethod(int, String, Class, Class[], Class[], String) + * * @version $Id$ */ public interface MethodFab 1.4 +2 -6 jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/service/NameLookup.java Index: NameLookup.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/service/NameLookup.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- NameLookup.java 30 Aug 2003 14:29:53 -0000 1.3 +++ NameLookup.java 2 Sep 2003 21:13:03 -0000 1.4 @@ -60,11 +60,7 @@ /** * Service interface for performing name lookups. This is typically * implemented as a wrapper around JNDI. This service is available - * as <code>org.apache.commons.hivemind.NameLookupImpl</code>. - * or [EMAIL PROTECTED] org.apache.commons.hivemind.HiveMind#NAME_LOOKUP_SERVICE_ID}. - * The default configuration does not include a core implementation, - * but a standard implementation is available as - * [EMAIL PROTECTED] org.apache.commons.hivemind.service.impl.NameLookupImpl}. + * as <code>hivemind.NameLookup</code>. * * @author Howard Lewis Ship * @version $Id$ 1.3 +2 -3 jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/service/RemoteExceptionCoordinator.java Index: RemoteExceptionCoordinator.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/service/RemoteExceptionCoordinator.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- RemoteExceptionCoordinator.java 30 Aug 2003 14:29:53 -0000 1.2 +++ RemoteExceptionCoordinator.java 2 Sep 2003 21:13:04 -0000 1.3 @@ -66,8 +66,7 @@ * * <p> * This service is available as - * <code>org.apache.commons.hivemind.RemoteExceptionCoordinatorImpl</code> - * or [EMAIL PROTECTED] org.apache.commons.hivemind.HiveMind#REMOTE_EXCEPTION_COORDINATOR_SERVICE_ID}. + * <codehivemind.RemoteExceptionCoordinator</code>. * * * @author Howard Lewis Ship 1.1 jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/service/package.html Index: package.html =================================================================== <!-- $Id: package.html,v 1.1 2003/09/02 21:13:04 hlship Exp $ --> <body> Definitions of services provided by the <code>hivemind</code> module. </body> 1.14 +2 -2 jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/impl/ServiceExtensionPointImpl.java Index: ServiceExtensionPointImpl.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/impl/ServiceExtensionPointImpl.java,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- ServiceExtensionPointImpl.java 30 Aug 2003 14:29:51 -0000 1.13 +++ ServiceExtensionPointImpl.java 2 Sep 2003 21:13:04 -0000 1.14 @@ -180,7 +180,7 @@ /** * Constructs the service implementation; this is invoked - * from [EMAIL PROTECTED] #constructService()} and from the generated + * from [EMAIL PROTECTED] #getService(Class)} and from the generated * deferrable proxy. */ 1.1 jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/impl/package.html Index: package.html =================================================================== <!-- $Id: package.html,v 1.1 2003/09/02 21:13:04 hlship Exp $ --> <body> Implementations of interfaces defined in the [EMAIL PROTECTED] org.apache.commons.hivemind} package. In addition, the [EMAIL PROTECTED] org.apache.commons.hivemind.impl.RegistryBuilder} is here. </body> 1.1 jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/parse/package.html Index: package.html =================================================================== <!-- $Id: package.html,v 1.1 2003/09/02 21:13:04 hlship Exp $ --> <body> Classes used to parse HiveMind module deployment descriptors, and descriptor objects that represent the parsed information. </body> 1.14 +3 -2 jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/service/impl/AbstractServiceInterceptorFactory.java Index: AbstractServiceInterceptorFactory.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/service/impl/AbstractServiceInterceptorFactory.java,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- AbstractServiceInterceptorFactory.java 30 Aug 2003 14:29:53 -0000 1.13 +++ AbstractServiceInterceptorFactory.java 2 Sep 2003 21:13:04 -0000 1.14 @@ -74,7 +74,8 @@ /** * Base class for creating new service interceptors. Most implementations - * merely have to implement [EMAIL PROTECTED] #createMethod(ClassFab, String, Class, Class[], Class[])}. + * merely have to implement + * [EMAIL PROTECTED] #addServiceMethodImplementation(ClassFab, String, Class, Class[], Class[])}. * * <p> * Implementations of this service must be configured with: 1.6 +3 -2 jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/service/impl/MethodFabImpl.java Index: MethodFabImpl.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/service/impl/MethodFabImpl.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- MethodFabImpl.java 30 Aug 2003 14:29:53 -0000 1.5 +++ MethodFabImpl.java 2 Sep 2003 21:13:04 -0000 1.6 @@ -66,7 +66,8 @@ import org.apache.commons.hivemind.service.MethodFab; /** - * Implementation of [EMAIL PROTECTED] MethodFab}, which is returned + * Implementation of [EMAIL PROTECTED] org.apache.commons.hivemind.service.MethodFab}, + * which is returned * from [EMAIL PROTECTED] org.apache.commons.hivemind.service.ClassFab#addMethod(int, String, Class, Class[], Class[], String)}, * so that additional exception handlers may be attached to the added method. * 1.1 jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/service/impl/package.html Index: package.html =================================================================== <!-- $Id: package.html,v 1.1 2003/09/02 21:13:04 hlship Exp $ --> <body> Implementations of services provided by the <code>hivemind</code> module. </body> 1.1 jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/util/package.html Index: package.html =================================================================== <!-- $Id: package.html,v 1.1 2003/09/02 21:13:04 hlship Exp $ --> <body> Implementations of [EMAIL PROTECTED] org.apache.commons.hivemind.Resource} and related utilities. </body> 1.1 jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/schema/impl/package.html Index: package.html =================================================================== <!-- $Id: package.html,v 1.1 2003/09/02 21:13:04 hlship Exp $ --> <body> Implementations of schema-related intefaces defined in [EMAIL PROTECTED] org.apache.commons.hivemind.schema}. </body> 1.1 jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/ant/package.html Index: package.html =================================================================== <!-- $Id: package.html,v 1.1 2003/09/02 21:13:04 hlship Exp $ --> <body> Ant tasks to support HiveMind. </body> 1.1 jakarta-commons-sandbox/hivemind/src/java/org/apache/commons/hivemind/schema/rules/package.html Index: package.html =================================================================== <!-- $Id: package.html,v 1.1 2003/09/02 21:13:04 hlship Exp $ --> <body> Implementations of the [EMAIL PROTECTED] org.apache.commons.hivemind.schema.Rule} and [EMAIL PROTECTED] org.apache.commons.hivemind.schema.Translator} interfaces. </body>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]