remm 02/04/05 07:52:45 Modified: coyote/src/java/org/apache/coyote ProtocolHandler.java Log: - Coding style :) Revision Changes Path 1.2 +19 -8 jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/ProtocolHandler.java Index: ProtocolHandler.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/ProtocolHandler.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ProtocolHandler.java 5 Apr 2002 05:34:19 -0000 1.1 +++ ProtocolHandler.java 5 Apr 2002 15:52:45 -0000 1.2 @@ -73,23 +73,34 @@ */ public interface ProtocolHandler { - /** Pass config info + + /** + * Pass config info. */ - public void setAttribute( String name, Object value ); + public void setAttribute(String name, Object value); + + + public Object getAttribute(String name); + - public Object getAttribute( String name ); - - /** The adapter, used to call the connector + /** + * The adapter, used to call the connector. */ public void setAdapter(Adapter adapter); + public Adapter getAdapter(); - /** Start the protocol + + /** + * Start the protocol. */ - public void init() throws Exception; + public void init() + throws Exception; + - public void destroy() throws Exception; + public void destroy() + throws Exception; }
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>