Interface ImportFilterCallback
-
public interface ImportFilterCallback
This interface is used to filter imported nodes in the {@link ISVNClient#import} call.- Since:
- 1.8
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
filter(java.lang.String path, NodeKind kind, boolean special)
This method will be called for each node.
-
-
-
Method Detail
-
filter
boolean filter(java.lang.String path, NodeKind kind, boolean special)
This method will be called for each node. Returns true to filter the node (and its descendants) from the import.
-
-