Skip to content

Commit d9e816c

Browse files
committed
Add missing class level documentation links
1 parent 61706b5 commit d9e816c

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

src/DataValue.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ var SELF = dv.DataValue = function DvDataValue() {
2828
*/
2929
SELF.TYPE = null;
3030

31+
/**
32+
* @class dataValues.DataValue
33+
*/
3134
$.extend( SELF.prototype, {
3235

3336
/**

src/valueFormatters/formatters/ValueFormatter.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ var SELF = vf.ValueFormatter = function VpValueFormatter( options ) {
1717
this._options = $.extend( {}, options || {} );
1818
};
1919

20+
/**
21+
* @class valueFormatters.ValueFormatter
22+
*/
2023
$.extend( SELF.prototype, {
2124
/**
2225
* Formatter options.

src/valueParsers/ValueParserStore.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ var SELF = vp.ValueParserStore = function VpValueParserStore( DefaultParser ) {
3232
this._parsersForDataValueTypes = {};
3333
};
3434

35+
/**
36+
* @class valueParsers.ValueParserStore
37+
*/
3538
$.extend( SELF.prototype, {
3639
/**
3740
* Default parser constructor to be returned when no parser is registered for a specific

src/valueParsers/parsers/ValueParser.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ var SELF = vp.ValueParser = function VpValueParser( options ) {
1717
this._options = $.extend( {}, options || {} );
1818
};
1919

20+
/**
21+
* @class valueParsers.ValueParser
22+
*/
2023
$.extend( SELF.prototype, {
2124
/**
2225
* Parser options.

0 commit comments

Comments
 (0)