Click or drag to resize

Codebase Class

A Codebase is a database of code and related objects - NOT CURRENTLY NECESSARY TO USE. In addition to code (Solutions), it might contain any related information, such as: users, versioning information, metrics, requirements, issue tracking, configuration data, and even runtime state.
Inheritance Hierarchy
SystemObject
  NovaCodebase

Namespace:  Nova
Assembly:  Nova.CodeDOM (in Nova.CodeDOM.dll) Version: 7.44.8391.13415
Syntax
C#
public class Codebase

The Codebase type exposes the following members.

Constructors
  NameDescription
Public methodCodebase
Initializes a new instance of the Codebase class
Top
Properties
  NameDescription
Public propertyStatic memberInstance
The singleton Codebase instance.
Top
Methods
  NameDescription
Public methodCreateSolution
Create a new Solution object, and add it to the Codebase.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields
  NameDescription
Protected fieldStatic member_instance
The singleton Codebase instance.
Protected field_solutions
All Solutions in this codebase.
Top
Remarks
Currently there is a singleton instance of a Codebase available, but it currently only stores Solutions, and since usually only one of these is used at a time, there's currently no reason to use this class until support is added to store additional code-related information.
See Also