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/03/29 05:47:18 UTC

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

remm        01/03/28 19:47:18

  Modified:    src/webdav/client/src/org/apache/webdav/lib/methods
                        PropFindMethod.java
  Log:
  - Change private fields to protected.
  
  Revision  Changes    Path
  1.19      +7 -7      jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/methods/PropFindMethod.java
  
  Index: PropFindMethod.java
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/methods/PropFindMethod.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- PropFindMethod.java	2001/03/23 05:06:38	1.18
  +++ PropFindMethod.java	2001/03/29 03:47:18	1.19
  @@ -1,7 +1,7 @@
   /*
  - * $Header: /home/cvs/jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/methods/PropFindMethod.java,v 1.18 2001/03/23 05:06:38 remm Exp $
  - * $Revision: 1.18 $
  - * $Date: 2001/03/23 05:06:38 $
  + * $Header: /home/cvs/jakarta-slide/src/webdav/client/src/org/apache/webdav/lib/methods/PropFindMethod.java,v 1.19 2001/03/29 03:47:18 remm Exp $
  + * $Revision: 1.19 $
  + * $Date: 2001/03/29 03:47:18 $
    *
    * ====================================================================
    *
  @@ -194,25 +194,25 @@
       /**
        * Type of the Propfind.
        */
  -    private int type = ALL;
  +    protected int type = ALL;
   
   
       /**
        * Property name list.
        */
  -    private Enumeration propertyNames;
  +    protected Enumeration propertyNames;
   
   
       /**
        * Depth.
        */
  -    private int depth = DEPTH_INFINITY;
  +    protected int depth = DEPTH_INFINITY;
   
   
       /**
        * The namespace abbreviation that prefixes DAV tags
        */
  -    private String prefix = null;
  +    protected String prefix = null;
   
   
       // ------------------------------------------------------------- Properties