improve ChangesetViewer api

This commit is contained in:
Sebastian Sdorra
2011-04-03 11:16:40 +02:00
parent ae758e2a33
commit f2b876a2c1
4 changed files with 51 additions and 22 deletions

View File

@@ -69,6 +69,9 @@ public interface RepositoryHandler
*
* @param repository
* @return null if ChangesetViewer is not supported
*
* @throws RepositoryException
*/
public ChangesetViewer getChangesetViewer(Repository repository);
public ChangesetViewer getChangesetViewer(Repository repository)
throws RepositoryException;
}

View File

@@ -63,6 +63,19 @@ public interface RepositoryManager
*/
public Repository get(String type, String name);
/**
* Method description
*
*
*
* @param repository
* @return null if ChangesetViewer is not supported
*
* @throws RepositoryException
*/
public ChangesetViewer getChangesetViewer(Repository repository)
throws RepositoryException;
/**
* Method description
*