SourceJammer 1.1.0 March 1, 2002
Copyright (c) 2001, 2002 Robert MacGrogan

Uses of Interface
org.sourcejammer.server.source.Delta

Packages that use Delta
org.sourcejammer.project.controller   
org.sourcejammer.project.model   
org.sourcejammer.project.model.filesys   
org.sourcejammer.server.source   
 

Uses of Delta in org.sourcejammer.project.controller
 

Methods in org.sourcejammer.project.controller that return Delta
 Delta Archive.getFileVersionDelta(long versionID)
          Get specified delta object for file.
 Delta ProjectController.getFileVersionDelta(long versionID)
          Get specified delta object for file.
 

Methods in org.sourcejammer.project.controller with parameters of type Delta
 long Archive.addNewVersion(long fileID, byte[] newVersion, Delta oReplaceCurrLatestVer, java.lang.String comment, java.lang.String userName)
          Adds a new version to an existing file.
 long ProjectController.addNewVersion(long fileID, byte[] newVersion, Delta oReplaceCurrLatestVer, java.lang.String comment, java.lang.String userName)
          Adds a new version to an existing file.
 

Uses of Delta in org.sourcejammer.project.model
 

Methods in org.sourcejammer.project.model that return Delta
 Delta NodeLibrary.retrieveVersionDelta(NodeInfo versionNode)
           
 

Methods in org.sourcejammer.project.model with parameters of type Delta
 void NodeLibrary.storeVersion(FileNode ndFile, long fileKey, long versionID, Delta file)
          Subclasses should implement to store file delta in the model implementation.
 

Uses of Delta in org.sourcejammer.project.model.filesys
 

Classes in org.sourcejammer.project.model.filesys that implement Delta
 class DeltaVector
          A simple object that implements Delta but stores only a Vector.
 

Methods in org.sourcejammer.project.model.filesys that return Delta
 Delta NodeLibraryFS.retrieveVersionDelta(NodeInfo versionNode)
           
static Delta Util.readDeltaFromFileSys(java.lang.String rootPath, java.lang.String fileName)
           
 

Methods in org.sourcejammer.project.model.filesys with parameters of type Delta
 void NodeLibraryFS.storeVersion(FileNode ndFile, long fileKey, long versionID, Delta file)
          Subclasses should implement to store file delta in the model implementation.
static void Util.writeDeltaToFileSys(Delta delta, java.lang.String rootPath, java.lang.String fileName)
           
 

Uses of Delta in org.sourcejammer.server.source
 

Classes in org.sourcejammer.server.source that implement Delta
 class BinaryDelta
          Represents the differences (or delta) between two versions of a binary file such that this BinaryDelta can be applied to the "old" file version to reproduce the new file version.
 class TextDelta
          This file represents the delta between two text files.
 class TextDiff
          Builds a diff from two text files and can reconstruct the second file when passed the first, using the type of EOL characters requested.
 


SourceJammer 1.1.0 March 1, 2002
Copyright (c) 2001, 2002 Robert MacGrogan