org.apache.subversion.javahl.callback
Interface InheritedProplistCallback


public interface InheritedProplistCallback

This interface is used to return regular and inherited property lists for each path in a ISVNClient.properties(java.lang.String, org.apache.subversion.javahl.types.Revision, org.apache.subversion.javahl.types.Revision, org.apache.subversion.javahl.types.Depth, java.util.Collection, org.apache.subversion.javahl.callback.ProplistCallback) call.

Since:
1.8

Nested Class Summary
static class InheritedProplistCallback.InheritedItem
          Describes properties inherited from one parent.
 
Method Summary
 void singlePath(String path, Map<String,byte[]> properties, Collection<InheritedProplistCallback.InheritedItem> inherited_properties)
          The method will be called once for every file.
 

Method Detail

singlePath

void singlePath(String path,
                Map<String,byte[]> properties,
                Collection<InheritedProplistCallback.InheritedItem> inherited_properties)
The method will be called once for every file.

Parameters:
path - the path.
properties - the properties on the path.
inherited_properties - depth-first ordered array of inherited properties..