[JSDoc] Remove obsolete module references

WTD-1482
This commit is contained in:
Victor Woeltjen
2015-08-07 11:55:38 -07:00
parent c08a460d30
commit eaaa1a19ca
9 changed files with 18 additions and 45 deletions

View File

@ -21,14 +21,6 @@
*****************************************************************************/
/*global define*/
/**
* Type implementation. Defines a type object which wraps a
* type definition and exposes useful methods for inspecting
* that type and understanding its relationship to other
* types.
*
* @module core/type/type-impl
*/
define(
['./TypeProperty'],
function (TypeProperty) {
@ -41,7 +33,6 @@ define(
* @param {TypeDefinition} typeDef an object containing
* key-value pairs describing a type and its
* relationship to other types.
* @memberof module:core/type/type-impl
* @constructor
* @memberof platform/core
*/

View File

@ -21,12 +21,6 @@
*****************************************************************************/
/*global define*/
/**
* Type property. Defines a mutable or displayable property
* associated with objects of a given type.
*
* @module core/type/type-property
*/
define(
['./TypePropertyConversion'],
function (TypePropertyConversion) {
@ -38,7 +32,6 @@ define(
*
* @memberof platform/core
* @constructor
* @memberof module:core/type/type-property
*/
function TypeProperty(propertyDefinition) {
// Load an appropriate conversion

View File

@ -21,12 +21,6 @@
*****************************************************************************/
/*global define*/
/**
* Defines type property conversions, used to convert values from
* a domain object model to values displayable in a form, and
* vice versa.
* @module core/type/type-property-conversion
*/
define(
function () {
'use strict';