source:
java/SVNAccess/src/net/oni2/svnaccess/SVNUpdateListener.java
Last change on this file was 732, checked in by , 12 years ago | |
---|---|
File size: 420 bytes |
Line | |
---|---|
1 | package net.oni2.svnaccess; |
2 | |
3 | /** |
4 | * Interface for listeners to status updates during checkout/update from SVN |
5 | * |
6 | * @author Christian Illy |
7 | */ |
8 | public interface SVNUpdateListener { |
9 | |
10 | /** |
11 | * Called after checking out / updating a single file |
12 | * |
13 | * @param done |
14 | * Files done |
15 | * @param total |
16 | * Total files for the current checkout/update |
17 | */ |
18 | public void statusUpdate(int done, int total); |
19 | } |
Note:
See TracBrowser
for help on using the repository browser.