Interface InheritedProplistCallback
-
public interface InheritedProplistCallback
This interface is used to return regular and inherited property lists for each path in aISVNClient.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<java.lang.String>, org.apache.subversion.javahl.callback.ProplistCallback)
call.- Since:
- 1.8
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
InheritedProplistCallback.InheritedItem
Describes properties inherited from one parent.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
singlePath(java.lang.String path, java.util.Map<java.lang.String,byte[]> properties, java.util.Collection<InheritedProplistCallback.InheritedItem> inherited_properties)
The method will be called once for every file.
-
-
-
Method Detail
-
singlePath
void singlePath(java.lang.String path, java.util.Map<java.lang.String,byte[]> properties, java.util.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..
-
-