You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by do...@apache.org on 2002/09/06 13:13:34 UTC

cvs commit: jakarta-avalon-phoenix/src/java/org/apache/avalon/phoenix ApplicationListener.java BlockListener.java BlockEvent.java BlockContext.java

donaldp     2002/09/06 04:13:34

  Modified:    src/java/org/apache/avalon/phoenix ApplicationListener.java
                        BlockListener.java BlockEvent.java
                        BlockContext.java
  Log:
  Turn some <code> sections into {@link} sections
  
  Revision  Changes    Path
  1.8       +1 -1      jakarta-avalon-phoenix/src/java/org/apache/avalon/phoenix/ApplicationListener.java
  
  Index: ApplicationListener.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-phoenix/src/java/org/apache/avalon/phoenix/ApplicationListener.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- ApplicationListener.java	6 Aug 2002 11:57:39 -0000	1.7
  +++ ApplicationListener.java	6 Sep 2002 11:13:34 -0000	1.8
  @@ -15,7 +15,7 @@
    * The implementation <em>must</em> have a zero argument
    * constructor and is instantiated before any other component of the Server
    * Application. To receive notification events, the implementation class
  - * should be specified in the <code>assembly.xml</code> descriptor.
  + * should be specified in the <tt>assembly.xml</tt> descriptor.
    *
    * @author <a href="mailto:peter at apache.org">Peter Donald</a>
    */
  
  
  
  1.7       +2 -2      jakarta-avalon-phoenix/src/java/org/apache/avalon/phoenix/BlockListener.java
  
  Index: BlockListener.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-phoenix/src/java/org/apache/avalon/phoenix/BlockListener.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- BlockListener.java	6 Aug 2002 11:57:39 -0000	1.6
  +++ BlockListener.java	6 Sep 2002 11:13:34 -0000	1.7
  @@ -11,11 +11,11 @@
   
   /**
    * Implementations of this interface receive notifications about
  - * changes to the state of <code>Block</code>s in the Server Application
  + * changes to the state of {@link Block}s in the Server Application
    * they are a part of. The implementation <em>must</em> have a zero argument
    * constructor and is instantiated before any other component of the Server
    * Application. To receive notification events, the implementation class
  - * should be specified in the <code>assembly.xml</code> descriptor.
  + * should be specified in the <tt>assembly.xml</tt> descriptor.
    *
    * @author <a href="mailto:peter at apache.org">Peter Donald</a>
    * @deprecated This interface has been replaced by ApplicationListener
  
  
  
  1.9       +3 -3      jakarta-avalon-phoenix/src/java/org/apache/avalon/phoenix/BlockEvent.java
  
  Index: BlockEvent.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-phoenix/src/java/org/apache/avalon/phoenix/BlockEvent.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- BlockEvent.java	6 Aug 2002 11:57:39 -0000	1.8
  +++ BlockEvent.java	6 Sep 2002 11:13:34 -0000	1.9
  @@ -12,8 +12,8 @@
   
   /**
    * This is the class that is used to deliver notifications
  - * about <code>Block</code>s state changes to the
  - * <code>BlockListener</code>s of a Server Application.
  + * about {@link Block}s state changes to the
  + * {@link BlockListener}s of a Server Application.
    *
    * @author <a href="mailto:peter at apache.org">Peter Donald</a>
    */
  @@ -27,7 +27,7 @@
       private final BlockInfo m_blockInfo;
   
       /**
  -     * Construct the <code>BlockEvent</code>.
  +     * Construct the <tt>BlockEvent</tt>.
        *
        * @param name the name of block
        * @param block the block object
  
  
  
  1.16      +4 -4      jakarta-avalon-phoenix/src/java/org/apache/avalon/phoenix/BlockContext.java
  
  Index: BlockContext.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-phoenix/src/java/org/apache/avalon/phoenix/BlockContext.java,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- BlockContext.java	6 Sep 2002 09:42:35 -0000	1.15
  +++ BlockContext.java	6 Sep 2002 11:13:34 -0000	1.16
  @@ -79,11 +79,11 @@
        * Each Block is referenced by other Blocks via their Proxy. When Phoenix
        * shuts down the Block, it can automatically invalidate the proxy. Thus
        * any attempt to call a method on a "dead"/shutdown object will result in
  -     * an <code>IllegalStateException</code>. This is desirable as it will
  +     * an {@link IllegalStateException}. This is desirable as it will
        * stop objects from using the Block when it is in an invalid state.
        *
        * <p>The proxy also allows Phoenix to associate "Context" information with
  -     * the object. For instance, a <code>Block</code> may expect to run with a
  +     * the object. For instance, a {@link Block} may expect to run with a
        * specific ContextClassLoader set. However if this Block were to be passed
        * to another component that processed the Block in a thread that did not
        * have the correct context information setup, then the Block could fail
  @@ -96,7 +96,7 @@
       //Object getProxy();
   
       /**
  -     * This method is similar to <code>getProxy()</code> except that it operates
  +     * This method is similar to {@link #getProxy()} except that it operates
        * on arbitrary objects. It will in effect proxy all interfaces that the
        * component supports.
        *
  @@ -115,7 +115,7 @@
   
       /**
        * This method gives you access to a named ClassLoader. The ClassLoaders
  -     * for an application are declared in the <code>environment.xml</code>
  +     * for an application are declared in the <tt>environment.xml</tt>
        * descriptor.
        */
       //ClassLoader getClassLoader( String name );
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>