This repository has been archived by the owner on Apr 3, 2023. It is now read-only.
forked from davidshimjs/jaguarjs-jsdoc
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathParent.js
executable file
·69 lines (64 loc) · 2.28 KB
/
Parent.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/**
* Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam
* @class
* @codepen {"id":"rVOpPK", "ko":"플리킹 기본 예제", "en":"Flicking default example", "collectionId":"ArxyLK", "height" : 403}
* @support {"ie": "7+", "ch" : "latest", "ff" : "latest", "sf" : "latest", "edge" : "latest", "ios" : "7+", "an" : "2.3+ (except 3.0)", "n-ios" : "latest", "n-an" : "latest"}
* @group GroupY
*/
var Parent = function () {
};
Parent.prototype = /** @lends Parent.prototype */{
/**
* cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidata
* @property {String} testProperty Description for Property <ko>Property 에 대한 설명</ko>
*/
testProperty: '',
/**
* Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
* @param {String|String[]} [paramA=Default Value] tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam
* @param {namespace.Car} [paramB] quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
* @param {Function} [paramCallback]
* @param {String} paramCallback.firstParam First parameter<ko>첫번째 파라미터</ko>
* @param {String} paramCallback.secondParam Second parameter<ko>두번째 파라미터</ko>
* @return {Array|Object} Return value as non-object type. (or an object without properties) <ko>Non-object 타입</ko>
*/
testMethod: function (paramA, paramB, paramCallback) {
return {};
},
/**
* This method will return object value.
* @return {Object} test returns object.
* @return {Boolean} test.foo property description
* @return {Number} test.bar optional property
*/
testReturnValue: function () {
},
/**
* @return Plain Text without type definition
*/
testReturnPlainText: function () {
},
/**
* @example
* <caption>JSDoc3 Captions</caption>
* var a = 0;
*
* for (var i = 0; i < 10; i++) {
* a++;
* }
*
* @example
* jaguarjs-doc uses markdown style.
*
* ```
* var a = 0;
*
* for (var i = 0; i < 10; i++) {
* a++;
* }
* ```
*/
testExample: function () {
}
};