Methods
- -build
- +characterForState:
- determines the representing character for the given state
- +createVersionString
- creates the version string based on the internal settings
- +createVersionStringForMajor:forMinor:forBuild:forState:
- creates the version string based on the internal settings
- -description
- -hash
- -initWithMajor
- Initializes with the given version information
- -initWithMajor:withMinor:withBuild:asState:
- Initializes with the given version information
- -isEqual:
- -major
- -minor
- -releaseState
- -versionString
- Used to create a unique string representation of the version.
- (unsigned) build;
- method result
- build number
determines the representing character for the given state
+ (char) characterForState: (ft_releaseState_t) aState;
- method result
- representing character for the given state
creates the version string based on the internal settings
See Also:
-
createVersionStringForMajor:forMinor:forBuild:forState:
+ (NSString *) createVersionStringForMajor: (unsigned) aMajorNr forMinor: (unsigned) aMinorNr forBuild: (unsigned) aBuildNr forState: (ft_releaseState_t) aState;
Parameter Descriptions
aMajorNr
- major number
aMinorNr
- minor number
aBuildNr
- build number
aState
- state of the artefact.
- method result
- self
creates the version string based on the internal settings
See Also:
-
createVersionString
+ (NSString *) createVersionStringForMajor: (unsigned) aMajorNr forMinor: (unsigned) aMinorNr forBuild: (unsigned) aBuildNr forState: (ft_releaseState_t) aState;
Parameter Descriptions
aMajorNr
- major number
aMinorNr
- minor number
aBuildNr
- build number
aState
- state of the artefact.
- (NSString *) description;
- method result
- Returns an NSString object that describes the contents of the
receiver. The debugger’s print-object command indirectly invokes this method
to produce a textual description of an object.
- (unsigned) hash;
- method result
- Returns an integer that can be used as a table address in a hash
table structure
Initializes with the given version information
See Also:
-
initWithMajor:withMinor:withBuild:asState:
- initWithMajor: (unsigned) aMajorNr withMinor: (unsigned) aMinorNr withBuild: (unsigned) aBuildNr asState: (ft_releaseState_t) aState;
Parameter Descriptions
aMajorNr
- major version number
aMinorNr
- minor version number
aState
- state of the build
- method result
- self
Initializes with the given version information
See Also:
-
initWithMajor
- initWithMajor: (unsigned) aMajorNr withMinor: (unsigned) aMinorNr withBuild: (unsigned) aBuildNr asState: (ft_releaseState_t) aState;
Parameter Descriptions
aMajorNr
- major version number
aMinorNr
- minor version number
aState
- state of the build
- (BOOL) isEqual: (id) anObject;
- method result
- Returns YES if the receiver and anObject are equal, NO otherwise.
- (unsigned) major;
- method result
- major version number
- (unsigned) minor;
- method result
- returns minor version number
- (ft_releaseState_t) releaseState;
- method result
- state of the release
Used to create a unique string representation of the version.
- (NSString *) versionString;
- method result
- string representation of the version
(Last Updated August 27, 2006)