@@ -384,7 +384,7 @@ this.createjs = this.createjs || {};
384384 * @property FILE_PATTERN
385385 * @type {RegExp }
386386 * @static
387- * @protected
387+ * @private
388388 */
389389 s . FILE_PATTERN = / ^ (?: ( \w + : ) \/ { 2 } ( \w + (?: \. \w + ) * \/ ? ) ) ? ( [ / . ] * ?(?: [ ^ ? ] + ) ? \/ ) ? ( (?: [ ^ / ? ] + ) \. ( \w + ) ) (?: \? ( \S + ) ? ) ? $ / ;
390390
@@ -558,7 +558,7 @@ this.createjs = this.createjs || {};
558558 * @type {Boolean }
559559 * @default false
560560 * @static
561- * @protected
561+ * @private
562562 */
563563 s . _pluginsRegistered = false ;
564564
@@ -567,7 +567,7 @@ this.createjs = this.createjs || {};
567567 * @property _lastID
568568 * @type {Number }
569569 * @static
570- * @protected
570+ * @private
571571 */
572572 s . _lastID = 0 ;
573573
@@ -579,7 +579,7 @@ this.createjs = this.createjs || {};
579579 * method.
580580 * @property _instances
581581 * @type {Array }
582- * @protected
582+ * @private
583583 * @static
584584 */
585585 s . _instances = [ ] ;
@@ -588,7 +588,7 @@ this.createjs = this.createjs || {};
588588 * An object hash storing objects with sound sources, startTime, and duration via there corresponding ID.
589589 * @property _idHash
590590 * @type {Object }
591- * @protected
591+ * @private
592592 * @static
593593 */
594594 s . _idHash = { } ;
@@ -599,7 +599,7 @@ this.createjs = this.createjs || {};
599599 * and data.
600600 * @property _preloadHash
601601 * @type {Object }
602- * @protected
602+ * @private
603603 * @static
604604 */
605605 s . _preloadHash = { } ;
@@ -609,7 +609,7 @@ this.createjs = this.createjs || {};
609609 * {{#crossLink "Sound/registerSound"}}{{/crossLink}} and {{#crossLink "Sound/registerSounds"}}{{/crossLink}}.
610610 * @property _defaultPlayPropsHash
611611 * @type {Object }
612- * @protected
612+ * @private
613613 * @static
614614 * @since 0.6.1
615615 */
@@ -666,7 +666,7 @@ this.createjs = this.createjs || {};
666666 * <li>types: A list of file types that are supported by Sound (currently supports "sound").</li>
667667 * <li>extensions: A list of file extensions that are supported by Sound (see {{#crossLink "Sound/SUPPORTED_EXTENSIONS:property"}}{{/crossLink}}).</li></ul>
668668 * @static
669- * @protected
669+ * @private
670670 */
671671 s . getPreloadHandlers = function ( ) {
672672 return {
@@ -680,7 +680,7 @@ this.createjs = this.createjs || {};
680680 * Used to dispatch fileload events from internal loading.
681681 * @method _handleLoadComplete
682682 * @param event A loader event.
683- * @protected
683+ * @private
684684 * @static
685685 * @since 0.6.0
686686 */
@@ -707,7 +707,7 @@ this.createjs = this.createjs || {};
707707 /**
708708 * Used to dispatch error events from internal preloading.
709709 * @param event
710- * @protected
710+ * @private
711711 * @since 0.6.0
712712 * @static
713713 */
@@ -818,7 +818,7 @@ this.createjs = this.createjs || {};
818818 * @method initLoad
819819 * @param {Object } src The object to load.
820820 * @return {Object|AbstractLoader } An instance of AbstractLoader.
821- * @protected
821+ * @private
822822 * @static
823823 */
824824 s . initLoad = function ( loadItem ) {
@@ -1154,7 +1154,7 @@ this.createjs = this.createjs || {};
11541154 * @param {String } value The path to an audio source.
11551155 * @return {Object } A formatted object that can be registered with the {{#crossLink "Sound/activePlugin:property"}}{{/crossLink}}
11561156 * and returned to a preloader like <a href="http://preloadjs.com" target="_blank">PreloadJS</a>.
1157- * @protected
1157+ * @private
11581158 * @static
11591159 */
11601160 s . _parsePath = function ( value ) {
@@ -1184,7 +1184,7 @@ this.createjs = this.createjs || {};
11841184 * @param {Object } value The paths to an audio source, indexed by extension type.
11851185 * @return {Object } A formatted object that can be registered with the {{#crossLink "Sound/activePlugin:property"}}{{/crossLink}}
11861186 * and returned to a preloader like <a href="http://preloadjs.com" target="_blank">PreloadJS</a>.
1187- * @protected
1187+ * @private
11881188 * @static
11891189 */
11901190 s . _parseSrc = function ( value ) {
@@ -1363,7 +1363,7 @@ this.createjs = this.createjs || {};
13631363 * @param {PlayPropsConfig } playProps A PlayPropsConfig object.
13641364 * @return {Boolean } If the sound can start playing. Sounds that fail immediately will return false. Sounds that
13651365 * have a delay will return true, but may still fail to play.
1366- * @protected
1366+ * @private
13671367 * @static
13681368 */
13691369 s . _playInstance = function ( instance , playProps ) {
@@ -1399,7 +1399,7 @@ this.createjs = this.createjs || {};
13991399 * @param {PlayPropsConfig } playProps A PlayPropsConfig object.
14001400 * @return {Boolean } If the sound can start playing. If there are no available channels, or the instance fails to
14011401 * start, this will return false.
1402- * @protected
1402+ * @private
14031403 * @static
14041404 */
14051405 s . _beginPlaying = function ( instance , playProps ) {
@@ -1421,7 +1421,7 @@ this.createjs = this.createjs || {};
14211421 * @method _getSrcById
14221422 * @param {String } value The ID the sound was registered with.
14231423 * @return {String } The source of the sound if it has been registered with this ID or the value that was passed in.
1424- * @protected
1424+ * @private
14251425 * @static
14261426 */
14271427 s . _getSrcById = function ( value ) {
@@ -1434,7 +1434,7 @@ this.createjs = this.createjs || {};
14341434 * instances themselves.
14351435 * @method _playFinished
14361436 * @param {AbstractSoundInstance } instance The instance that finished playback.
1437- * @protected
1437+ * @private
14381438 * @static
14391439 */
14401440 s . _playFinished = function ( instance ) {
0 commit comments