You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by eh...@apache.org on 2003/10/09 17:00:49 UTC

cvs commit: jakarta-tapestry/framework/src/org/apache/tapestry/engine IEngineService.java Namespace.java

ehatcher    2003/10/09 08:00:49

  Modified:    framework/src/org/apache/tapestry AbstractComponent.java
                        INamespace.java
               framework/src/org/apache/tapestry/link
                        AbstractLinkComponent.java DirectLink.java
                        ExternalLink.java
               framework/src/org/apache/tapestry/engine IEngineService.java
                        Namespace.java
  Log:
  lotsa javadoc fixups
  
  Revision  Changes    Path
  1.16      +2 -2      jakarta-tapestry/framework/src/org/apache/tapestry/AbstractComponent.java
  
  Index: AbstractComponent.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/framework/src/org/apache/tapestry/AbstractComponent.java,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- AbstractComponent.java	9 Aug 2003 23:27:13 -0000	1.15
  +++ AbstractComponent.java	9 Oct 2003 15:00:49 -0000	1.16
  @@ -528,7 +528,7 @@
   
       /**
        *  Return's the page's change observer.  In practical terms, this
  -     *  will be an {@link IPageRecorder}.
  +     *  will be an {@link org.apache.tapestry.engine.IPageRecorder}.
        *
        *  @see IPage#getChangeObserver()
        *  @deprecated To be removed in 3.1; use {@link IPage#getChangeObserver()}.
  
  
  
  1.5       +3 -3      jakarta-tapestry/framework/src/org/apache/tapestry/INamespace.java
  
  Index: INamespace.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/framework/src/org/apache/tapestry/INamespace.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- INamespace.java	17 Apr 2003 21:33:47 -0000	1.4
  +++ INamespace.java	9 Oct 2003 15:00:49 -0000	1.5
  @@ -196,7 +196,7 @@
       /**
        *  Returns the path for the named component (within the namespace).
        * 
  -     *  @param alias the component alias
  +     *  @param type the component alias
        *  @return the specification path of the component
        *  @throws ApplicationRuntimeException if the specification
        *  doesn't exist or can't be loaded
  @@ -250,7 +250,7 @@
       public List getServiceNames();
   
       /**
  -     *  Returns the {@link LibrarySpecification} from which
  +     *  Returns the {@link org.apache.tapestry.spec.LibrarySpecification} from which
        *  this namespace was created.
        * 
        **/
  
  
  
  1.10      +2 -2      jakarta-tapestry/framework/src/org/apache/tapestry/link/AbstractLinkComponent.java
  
  Index: AbstractLinkComponent.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/framework/src/org/apache/tapestry/link/AbstractLinkComponent.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- AbstractLinkComponent.java	6 Aug 2003 14:28:49 -0000	1.9
  +++ AbstractLinkComponent.java	9 Oct 2003 15:00:49 -0000	1.10
  @@ -240,7 +240,7 @@
   
       /**
        *  Utility method for subclasses; Gets the named service from the engine
  -     *  and invokes {@link org.apache.tapestry.IEngineService#buildGesture(IRequestCycle, IComponent, Object[])}
  +     *  and invokes {@link IEngineService#getLink(IRequestCycle, org.apache.tapestry.IComponent, Object[])}
        *  on it.
        * 
        *  @since 3.0
  
  
  
  1.4       +2 -2      jakarta-tapestry/framework/src/org/apache/tapestry/link/DirectLink.java
  
  Index: DirectLink.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/framework/src/org/apache/tapestry/link/DirectLink.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- DirectLink.java	23 Mar 2003 23:18:29 -0000	1.3
  +++ DirectLink.java	9 Oct 2003 15:00:49 -0000	1.4
  @@ -145,7 +145,7 @@
        *  Invoked by the direct service to trigger the application-specific
        *  action by notifying the {@link IActionListener listener}.
        *
  -     *  @throws StaleSessionException if the component is stateful, and
  +     *  @throws org.apache.tapestry.StaleSessionException if the component is stateful, and
        *  the session is new.
        * 
        **/
  
  
  
  1.3       +5 -5      jakarta-tapestry/framework/src/org/apache/tapestry/link/ExternalLink.java
  
  Index: ExternalLink.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/framework/src/org/apache/tapestry/link/ExternalLink.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ExternalLink.java	15 Mar 2003 21:22:27 -0000	1.2
  +++ ExternalLink.java	9 Oct 2003 15:00:49 -0000	1.3
  @@ -60,13 +60,13 @@
   import org.apache.tapestry.engine.ILink;
   
   /**
  - *  A component for creating a link to {@link IExternalPage} using the 
  - * {@link ExternalService}.
  + *  A component for creating a link to {@link org.apache.tapestry.IExternalPage} using the
  + * {@link org.apache.tapestry.engine.ExternalService}.
    *
    *  [<a href="../../../../../ComponentReference/ExternalLink.html">Component Reference</a>]
    *
  - * @see IExternalPage
  - * @see ExternalService
  + * @see org.apache.tapestry.IExternalPage
  + * @see org.apache.tapestry.engine.ExternalService
    *
    * @author Malcolm Edgar
    * @version $Id$
  
  
  
  1.6       +6 -6      jakarta-tapestry/framework/src/org/apache/tapestry/engine/IEngineService.java
  
  Index: IEngineService.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/framework/src/org/apache/tapestry/engine/IEngineService.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- IEngineService.java	25 Apr 2003 22:51:56 -0000	1.5
  +++ IEngineService.java	9 Oct 2003 15:00:49 -0000	1.6
  @@ -64,13 +64,13 @@
   import org.apache.tapestry.request.ResponseOutputStream;
   
   /**
  - *  A service, provided by the {@link IEngine}, for its pages and/or components.  
  + *  A service, provided by the {@link org.apache.tapestry.IEngine}, for its pages and/or components.
    *  Services are
    *  responsible for constructing {@link EngineServiceLink}s (an encoding of URLs)
    *  to represent dynamic application behavior, and for
    *  parsing those URLs when a subsequent request involves them.
    *
  - *  @see IEngine#getService(String)
  + *  @see org.apache.tapestry.IEngine#getService(String)
    *
    *  @author Howard Lewis Ship
    *  @version $Id$
  @@ -90,7 +90,7 @@
        *  @param parameters Additional parameters specific to the
        *  component requesting the EngineServiceLink.
        *  @return The URL for the service.  The URL will have to be encoded
  -     *  via {@link HttpServletResponse#encodeURL(java.lang.String)}.
  +     *  via {@link javax.servlet.http.HttpServletResponse#encodeURL(java.lang.String)}.
        *
        **/
   
  @@ -103,8 +103,8 @@
        *  rendering a result page.
        *
        *
  -     *  @see IEngine#service(RequestContext)
  -     *  @param engine a view of the {@link IEngine} with additional methods needed by services
  +     *  @see org.apache.tapestry.IEngine#service(org.apache.tapestry.request.RequestContext)
  +     *  @param engine a view of the {@link org.apache.tapestry.IEngine} with additional methods needed by services
        *  @param cycle the incoming request
        *  @param output stream to which output should ultimately be directed
        * 
  
  
  
  1.7       +4 -4      jakarta-tapestry/framework/src/org/apache/tapestry/engine/Namespace.java
  
  Index: Namespace.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/framework/src/org/apache/tapestry/engine/Namespace.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- Namespace.java	28 May 2003 13:41:39 -0000	1.6
  +++ Namespace.java	9 Oct 2003 15:00:49 -0000	1.7
  @@ -74,7 +74,7 @@
   
   /**
    *  Implementation of {@link org.apache.tapestry.INamespace}
  - *  that works with a {@link org.apache.tapestry.ISpecificationSource} to
  + *  that works with a {@link ISpecificationSource} to
    *  obtain page and component specifications as needed.
    *
    *  @author Howard Lewis Ship
  @@ -94,7 +94,7 @@
       private boolean _applicationNamespace;
   
       /**
  -     *  Map of {@link ComponentSpecification} keyed on page name.
  +     *  Map of {@link org.apache.tapestry.spec.ComponentSpecification} keyed on page name.
        *  The map is synchronized because different threads may
        *  try to update it simultaneously (due to dynamic page
        *  discovery in the application namespace).
  @@ -104,7 +104,7 @@
       private Map _pages = Collections.synchronizedMap(new HashMap());
   
       /**
  -     *  Map of {@link ComponentSpecification} keyed on
  +     *  Map of {@link org.apache.tapestry.spec.ComponentSpecification} keyed on
        *  component alias.
        * 
        **/
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: tapestry-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tapestry-dev-help@jakarta.apache.org