net.sf.statcvs.output
Class ViewCvsIntegration

java.lang.Object
  extended bynet.sf.statcvs.output.ViewCvsIntegration
All Implemented Interfaces:
WebRepositoryIntegration

public class ViewCvsIntegration
extends Object
implements WebRepositoryIntegration

Integration of ViewCVS

Version:
$Id: ViewCvsIntegration.java,v 1.10 2004/10/12 07:22:42 cyganiak Exp $
Author:
Richard Cyganiak

Constructor Summary
ViewCvsIntegration(String baseURL)
           
 
Method Summary
 String getDiffUrl(CvsRevision oldRevision, CvsRevision newRevision)
          Returns a URL to a diff in the web repository browser.
 String getDirectoryUrl(Directory directory)
          Returns a URL to a directory in the web repository browser
 String getFileHistoryUrl(CvsFile file)
          Returns a URL to a file in the web repository browser.
 String getFileViewUrl(CvsFile file)
          Returns a URL to a file in the web repository browser.
 String getFileViewUrl(CvsRevision revision)
          Returns a URL to a file in the web repository browser.
 String getName()
          Returns the name of the repository browser
 void setAtticFileNames(Set atticFileNames)
          Sets the files that are "in the attic", in the CVS sense.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ViewCvsIntegration

public ViewCvsIntegration(String baseURL)
Parameters:
baseURL - base URL of the ViewCVS installation
Method Detail

getName

public String getName()
Description copied from interface: WebRepositoryIntegration
Returns the name of the repository browser

Specified by:
getName in interface WebRepositoryIntegration
Returns:
the name of the repository browser
See Also:
WebRepositoryIntegration.getName()

getDirectoryUrl

public String getDirectoryUrl(Directory directory)
Description copied from interface: WebRepositoryIntegration
Returns a URL to a directory in the web repository browser

Specified by:
getDirectoryUrl in interface WebRepositoryIntegration
Parameters:
directory - the directory
Returns:
a URL to the directory in the web repository browser
See Also:
WebRepositoryIntegration.getDirectoryUrl(net.sf.statcvs.model.Directory)

getFileHistoryUrl

public String getFileHistoryUrl(CvsFile file)
Description copied from interface: WebRepositoryIntegration
Returns a URL to a file in the web repository browser. The URL points to a history of all revisions of the file.

Specified by:
getFileHistoryUrl in interface WebRepositoryIntegration
Parameters:
file - the file
Returns:
a URL to the file in the web repository browser
See Also:
WebRepositoryIntegration.getFileHistoryUrl(net.sf.statcvs.model.CvsFile)

getFileViewUrl

public String getFileViewUrl(CvsFile file)
Description copied from interface: WebRepositoryIntegration
Returns a URL to a file in the web repository browser. The URL points to a representation of the file's current contents.

Specified by:
getFileViewUrl in interface WebRepositoryIntegration
Parameters:
file - the file
Returns:
a URL to the file in the web repository browser
See Also:
WebRepositoryIntegration.getFileViewUrl(CvsFile)

getFileViewUrl

public String getFileViewUrl(CvsRevision revision)
Description copied from interface: WebRepositoryIntegration
Returns a URL to a file in the web repository browser. The URL points to a representation of the specific revision given as a parameter.

Specified by:
getFileViewUrl in interface WebRepositoryIntegration
Parameters:
revision - the revision
Returns:
a URL to the revision in the web repository browser
See Also:
WebRepositoryIntegration.getFileViewUrl(CvsFile)

getDiffUrl

public String getDiffUrl(CvsRevision oldRevision,
                         CvsRevision newRevision)
Description copied from interface: WebRepositoryIntegration
Returns a URL to a diff in the web repository browser. Both revisions must belong to the same CvsFile.

Specified by:
getDiffUrl in interface WebRepositoryIntegration
Parameters:
oldRevision - the old revision
newRevision - the new revision
Returns:
a URL to a diff
See Also:
WebRepositoryIntegration.getDiffUrl(net.sf.statcvs.model.CvsRevision, net.sf.statcvs.model.CvsRevision)

setAtticFileNames

public void setAtticFileNames(Set atticFileNames)
Description copied from interface: WebRepositoryIntegration
Sets the files that are "in the attic", in the CVS sense. See CVS manual.

Specified by:
setAtticFileNames in interface WebRepositoryIntegration
Parameters:
atticFileNames - names of all files (String) in the attic
See Also:
WebRepositoryIntegration.setAtticFileNames(java.util.Set)