You are viewing a plain text version of this content. The canonical link for it is here.
Posted to slide-dev@jakarta.apache.org by re...@apache.org on 2001/02/06 06:54:15 UTC

cvs commit: jakarta-slide/src/webdav/client/src/org/apache/webdav/lib WebdavClient.java

remm        01/02/05 21:54:15

  Modified:    src/webdav/client/src/org/apache/webdav/lib
                        WebdavClient.java
  Log:
  - Add a WebdavClient.setState(State) method to allow more flexibility.
  
  Revision  Changes    Path
  1.19      +11 -3     jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/WebdavClient.java
  
  Index: WebdavClient.java
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/WebdavClient.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- WebdavClient.java	2001/01/21 20:34:57	1.18
  +++ WebdavClient.java	2001/02/06 05:54:14	1.19
  @@ -1,7 +1,7 @@
   /*
  - * $Header: /home/cvs/jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/WebdavClient.java,v 1.18 2001/01/21 20:34:57 remm Exp $
  - * $Revision: 1.18 $
  - * $Date: 2001/01/21 20:34:57 $
  + * $Header: /home/cvs/jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/WebdavClient.java,v 1.19 2001/02/06 05:54:14 remm Exp $
  + * $Revision: 1.19 $
  + * $Date: 2001/02/06 05:54:14 $
    *
    * ====================================================================
    *
  @@ -239,6 +239,14 @@
        */
       public State getState() {
           return state;
  +    }
  +    
  +    
  +    /**
  +     * Set the client state.
  +     */
  +    public void setState(State state) {
  +        this.state = state;
       }