Folks,

> b)  There is a way of generating xinfo files now.  Peter has made a 
> xdoclet type thing.

This is how you use it -> see javadoc tags.  This also show Serviceable 
which is a simple migration from Composable....

-ph

/**
 * This is the service through which ConnectionManagement occurs.
 *
 * @phoenix:service 
name="org.apache.avalon.cornerstone.services.connection.ConnectionManager"
 *
 * @author <a href="mailto:[EMAIL PROTECTED]";>Peter Donald</a>
 */
public class DefaultConnectionManager
    extends AbstractLogEnabled
    implements Block, ConnectionManager, Serviceable, Disposable
{
    private HashMap m_connections = new HashMap();
    private ThreadManager m_threadManager;

    /**
     * @phoenix:dependency 
name="org.apache.avalon.cornerstone.services.threads.ThreadManager"
     */
    public void service( final ServiceManager serviceManager )
        throws ServiceException
    {
        m_threadManager = (ThreadManager)serviceManager.lookup( 
ThreadManager.ROLE );
    }



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to