Skip to content

Commit

Permalink
ENYO-2904 Add glossary entries for private/protected
Browse files Browse the repository at this point in the history
Enyo-DCO-1.1-Signed-off-by: Roy Sutton <roy.sutton@lge.com>
  • Loading branch information
Roy Sutton committed Dec 29, 2015
1 parent a62d098 commit 990324d
Showing 1 changed file with 22 additions and 5 deletions.
27 changes: 22 additions & 5 deletions docs/external.jsdoc
Expand Up @@ -153,11 +153,27 @@
* @glossary computed_property
*/

/**
* Methods and properties marked as private should not be used by developers. They may be changed or
* removed without notice and their particular implementations should not be relied upon. Kinds and
* modules marked as private are inteded for use only by the framework.
*
* @glossary private
*/

/**
* Methods and properties marked as protected should only be used when subclassing a kind. They
* represent the internal workings of a kind and should not be used by outside kinds. Protected kinds
* and modules are not intended to be instantiated directly by developers.
*
* @glossary protected
*/

///// Internally Documented Links (Glossary) /////

/**
* Binary (bitwise) operations.
*
*
* @glossary bitwise
* @see http://www.experts-exchange.com/Programming/Misc/A_1842-Binary-Bit-Flags-Tutorial-and-Usage-Tips.html
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_Operators
Expand All @@ -166,7 +182,7 @@
/**
* Strict Equality. This comparison logic ensures not only that the value of the things being
* compared is the same, but also their types.
*
*
* @glossary ===
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Comparison_Operators#Using_the_Equality_Operators
*/
Expand All @@ -176,25 +192,26 @@
* that don't support a native version of said method, in an effort to bring the
* browser up to the standards of modern browsers. This allows code that expects
* a modern browser to work properly in an older one.
*
*
* @glossary polyfill
* @see http://en.wikipedia.org/wiki/Polyfill
*/

/**
* The Document Object Model (DOM) is a programming interface for HTML and XML documents.
*
* @glossary DOM
* @see https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model
*/

///// Externally Documented Links /////

/**
* Inheritance
* @glossary inheritance
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Inheritance_and_the_prototype_chain
*/

///// Externally Documented Links /////

/**
* Universally Unique Identifier
* @glossary UUID
Expand Down

0 comments on commit 990324d

Please sign in to comment.