Uses of Class
nl.toolforge.karma.core.Version

Packages that use Version
nl.toolforge.karma.core The core package contains class for the very core of Karma. 
nl.toolforge.karma.core.cmd.impl   
nl.toolforge.karma.core.history The history package contains classes that are used for retrieving and storing the history of modules. 
nl.toolforge.karma.core.module   
nl.toolforge.karma.core.vc The vc package contains implementation code for connections and processing classes to version control systems. 
nl.toolforge.karma.core.vc.cvsimpl CVS implementation of the vc package. 
nl.toolforge.karma.core.vc.svnimpl Subversion implementation of the vc package. 
 

Uses of Version in nl.toolforge.karma.core
 

Subclasses of Version in nl.toolforge.karma.core
 class Patch
           
 

Fields in nl.toolforge.karma.core declared as Version
static Version Version.INITIAL_VERSION
          The initial version for a module.
 

Methods in nl.toolforge.karma.core that return Version
protected static Version Version.getInitialVersion()
          Returns the initial version for a module.
 

Methods in nl.toolforge.karma.core with parameters of type Version
 boolean Version.isLowerThan(Version version)
           
 boolean Version.isHigherThan(Version version)
           
 

Uses of Version in nl.toolforge.karma.core.cmd.impl
 

Methods in nl.toolforge.karma.core.cmd.impl that return Version
protected  Version PromoteCommand.getNewVersion()
          Returns the new version number for the module, or null when no version number could be set.
 

Uses of Version in nl.toolforge.karma.core.history
 

Methods in nl.toolforge.karma.core.history that return Version
 Version ModuleHistoryEvent.getVersion()
           
 

Methods in nl.toolforge.karma.core.history with parameters of type Version
 void ModuleHistoryEvent.setVersion(Version version)
           
 

Uses of Version in nl.toolforge.karma.core.module
 

Methods in nl.toolforge.karma.core.module that return Version
 Version BaseModule.getVersion()
           
 Version Module.getVersion()
          If a module has a <version>-attribute, this method returns a Version instance representing the version number of the module.
 

Constructors in nl.toolforge.karma.core.module with parameters of type Version
OtherModule(java.lang.String name, Location location, Version version)
          Constructs an OtherModule with a name, location and version.
UntypedModule(java.lang.String name, Location location, Version version)
           
LibModule(java.lang.String name, Location location, Version version)
           
JavaWebApplicationModule(java.lang.String name, Location location, Version version)
           
JavaEnterpriseApplicationModule(java.lang.String name, Location location, Version version)
           
SourceModule(java.lang.String name, Location location, Version version)
          Constructs a SourceModule with a name, location and version.
MavenModule(java.lang.String name, Location location, Version version)
           
BaseModule(java.lang.String name, Location location, Version version)
           
 

Uses of Version in nl.toolforge.karma.core.vc
 

Methods in nl.toolforge.karma.core.vc that return Version
 Version ModuleStatus.getNextVersion()
           
 Version ModuleStatus.getNextMajorVersion()
           
 Version ModuleStatus.getLastVersion()
           
 Version ModuleStatus.getLocalVersion()
           
 

Methods in nl.toolforge.karma.core.vc with parameters of type Version
 void Runner.checkout(Module module, Version version)
          Checks out a module from a version control system with the specified version.
 void Runner.checkout(Module module, DevelopmentLine developmentLine, Version version)
          Checks out a module from a version control system with the specified version and from a development line.
 void Runner.update(Module module, Version version)
          Updates an already checked out module to a specified version.
 void Runner.promote(Module module, java.lang.String comment, Version version)
           
 void Runner.update(Module module, DevelopmentLine developmentLine, Version version)
           
 

Constructors in nl.toolforge.karma.core.vc with parameters of type Version
PatchLine(Version version)
          Creates a PatchLine for version version.
 

Uses of Version in nl.toolforge.karma.core.vc.cvsimpl
 

Methods in nl.toolforge.karma.core.vc.cvsimpl that return Version
static Version Utils.getLastVersion(Module module)
           
static Version Utils.getLocalVersion(Module module)
           
 Version CVSModuleStatus.getNextVersion()
          Returns a Version instance representing the next possible version (major or patch) for the module.
 Version CVSModuleStatus.getNextMajorVersion()
           
 Version CVSModuleStatus.getLastVersion()
          The latest promoted version of the module in the version control system for the branch.
 Version CVSModuleStatus.getLocalVersion()
          Gets the local version of the module, which is determined by parsing the CVS/Entries file.
 

Methods in nl.toolforge.karma.core.vc.cvsimpl with parameters of type Version
static SymbolicName Utils.createSymbolicName(Module module, DevelopmentLine developmentLine, Version version)
          Creates a symbolic name for module, based on version and whether a module has an associated DevelopmentLine.
static SymbolicName Utils.createSymbolicName(Module module, Version version)
           
 void CVSRunner.checkout(Module module, Version version)
          Performs the cvs checkout [-r <symbolic-name>] <module>command for a module.
 void CVSRunner.checkout(Module module, DevelopmentLine developmentLine, Version version)
          See CVSRunner.checkout(Module, Version).
 void CVSRunner.update(Module module, Version version)
           
 void CVSRunner.update(Module module, DevelopmentLine developmentLine, Version version)
          For a module, the cvs -q update -d -r <symbolic-name> command is executed.
 void CVSRunner.promote(Module module, java.lang.String comment, Version version)
           
 

Uses of Version in nl.toolforge.karma.core.vc.svnimpl
 

Methods in nl.toolforge.karma.core.vc.svnimpl with parameters of type Version
 void SubversionRunner.update(Module module, DevelopmentLine developmentLine, Version version)
           
 void SubversionRunner.checkout(Module module, Version version)
           
 void SubversionRunner.checkout(Module module, DevelopmentLine developmentLine, Version version)
           
 void SubversionRunner.update(Module module, Version version)
           
 void SubversionRunner.promote(Module module, java.lang.String comment, Version version)
           
 



Copyright © 2002-2004 Toolforge. All Rights Reserved.