Skip to content

Add missing class level documentation links #75

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 11, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/Claim.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ var SELF = wb.datamodel.Claim = function WbDataModelClaim( mainSnak, qualifiers,
this._guid = guid || null;
};

/**
* @class wikibase.datamodel.Claim
*/
$.extend( SELF.prototype, {
/**
* @property {wikibase.datamodel.Snak}
Expand Down
3 changes: 3 additions & 0 deletions src/Entity.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ var SELF = wb.datamodel.Entity = function WbDataModelEntity() {
*/
SELF.TYPE = null;

/**
* @class wikibase.datamodel.Entity
*/
$.extend( SELF.prototype, {
/**
* @property {string}
Expand Down
3 changes: 3 additions & 0 deletions src/Fingerprint.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ var SELF
this._aliases = aliases;
};

/**
* @class wikibase.datamodel.Fingerprint
*/
$.extend( SELF.prototype, {
/**
* @property {wikibase.datamodel.TermMap}
Expand Down
3 changes: 3 additions & 0 deletions src/Group.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ var SELF = wb.datamodel.Group = function WbDataModelGroup(
this.setItemContainer( groupableCollection || new GroupableCollectionConstructor() );
};

/**
* @class wikibase.datamodel.Group
*/
$.extend( SELF.prototype, {
/**
* @property {*}
Expand Down
3 changes: 3 additions & 0 deletions src/GroupableCollection.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
*/
var SELF = wb.datamodel.GroupableCollection = function WbDataModelGroupableCollection() {};

/**
* @class wikibase.datamodel.GroupableCollection
*/
$.extend( SELF.prototype, {
/**
* Returns the collection items as list.
Expand Down
3 changes: 3 additions & 0 deletions src/Map.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ var SELF = wb.datamodel.Map = function WbDataModelMap( ItemConstructor, map ) {
}
};

/**
* @class wikibase.datamodel.Map
*/
$.extend( SELF.prototype, {
/**
* @property {Function}
Expand Down
3 changes: 3 additions & 0 deletions src/MultiTerm.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ var SELF = wb.datamodel.MultiTerm = function WbDataModelMultiTerm( languageCode,
this.setTexts( texts );
};

/**
* @class wikibase.datamodel.MultiTerm
*/
$.extend( SELF.prototype, {
/**
* @property {string}
Expand Down
3 changes: 3 additions & 0 deletions src/Reference.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ var SELF = wb.datamodel.Reference = function WbDataModelReference( snaks, hash )
this._hash = hash || null;
};

/**
* @class wikibase.datamodel.Reference
*/
$.extend( SELF.prototype, {
/**
* @property {string|null}
Expand Down
3 changes: 3 additions & 0 deletions src/SiteLink.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ var SELF = wb.datamodel.SiteLink = function WbDataModelSiteLink( siteId, pageNam
this._badges = badges || [];
};

/**
* @class wikibase.datamodel.SiteLink
*/
$.extend( SELF.prototype, {
/**
* @property {string}
Expand Down
3 changes: 3 additions & 0 deletions src/Snak.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ var SELF = wb.datamodel.Snak = function WbDataModelSnak( propertyId ) {
*/
SELF.TYPE = null;

/**
* @class wikibase.datamodel.Snak
*/
$.extend( SELF.prototype, {
/**
* @property {string}
Expand Down
3 changes: 3 additions & 0 deletions src/Term.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ var SELF = wb.datamodel.Term = function WbDataModelTerm( languageCode, text ) {
this.setText( text );
};

/**
* @class wikibase.datamodel.Term
*/
$.extend( SELF.prototype, {
/**
* @property {string}
Expand Down