123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362 |
- "use strict";
- // Copyright 2012 United States Government, as represented by the Secretary of Defense, Under
- // Secretary of Defense (Personnel & Readiness).
- //
- // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
- // in compliance with the License. You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software distributed under the License
- // is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
- // or implied. See the License for the specific language governing permissions and limitations under
- // the License.
- /// Model API.
- ///
- /// @module vwf/api/model
- define( function() {
- var exports = {
- /// Description.
- ///
- /// @function
- ///
- /// @param {ID} nodeID
- /// @param {ID} childID
- /// @param {String} childExtendsID
- /// @param {String[]} childImplementsIDs
- /// @param {String} childSource
- /// @param {String} childType
- /// @param {String} childIndex
- /// When `nodeID` is falsy, the URI of the component, or `undefined` if the component
- /// wasn't loaded from a URI. When `nodeID` is truthy, the numerical index of the child's
- /// position in the parent's array, starting at `0`. When child order is significant to
- /// the driver, the child should be placed at the given position in the parent's array.
- /// Nodes won't necessarily arrive in numerical order since varying dependencies cause
- /// nodes to become ready at indeterminate times.
- /// @param {String} childName
- /// @param {module:vwf/api/model~readyCallback} callback
- ///
- /// @returns {}
- creatingNode: [ /* nodeID, childID, childExtendsID, childImplementsIDs, childSource, childType,
- childIndex, childName, callback( ready ) */ ],
- /// Description.
- ///
- /// @function
- ///
- /// @param {ID} nodeID
- /// @param {ID} childID
- /// @param {String} childExtendsID
- /// @param {String[]} childImplementsIDs
- /// @param {String} childSource
- /// @param {String} childType
- /// @param {String} childIndex
- /// When `nodeID` is falsy, the URI of the component, or `undefined` if the component
- /// wasn't loaded from a URI. When `nodeID` is truthy, the numerical index of the child's
- /// position in the parent's array, starting at `0`. When child order is significant to
- /// the driver, the child should be placed at the given position in the parent's array.
- /// Nodes won't necessarily arrive in numerical order since varying dependencies cause
- /// nodes to become ready at indeterminate times.
- /// @param {String} childName
- ///
- /// @returns {}
- initializingNode: [ /* nodeID, childID, childExtendsID, childImplementsIDs, childSource, childType,
- childIndex, childName */ ],
- /// Description.
- ///
- /// @function
- ///
- /// @param {ID} nodeID
- /// @param {ID} childID
- /// @param {ID} childInitializingNodeID
- ///
- /// @returns {}
- initializingNodeFromPrototype: [ /* nodeID, childID, childInitializingNodeID */ ],
- /// Description.
- ///
- /// @function
- ///
- /// @param {ID} nodeID
- ///
- /// @returns {}
- deletingNode: [ /* nodeID */ ],
- /// Description.
- ///
- /// @function
- ///
- /// @param {}
- ///
- /// @returns {}
- addingChild: [],
- /// Description.
- ///
- /// @function
- ///
- /// @param {}
- ///
- /// @returns {}
- removingChild: [],
- /// Description.
- ///
- /// @function
- ///
- /// @param {}
- ///
- /// @returns {}
- settingProperties: [],
- /// Description.
- ///
- /// @function
- ///
- /// @param {}
- ///
- /// @returns {}
- gettingProperties: [],
- /// Description.
- ///
- /// @function
- ///
- /// @param {}
- ///
- /// @returns {}
- creatingProperty: [],
- /// Description.
- ///
- /// @function
- ///
- /// @param {}
- ///
- /// @returns {}
- initializingProperty: [],
- // TODO: deletingProperty
- /// Description.
- ///
- /// @function
- ///
- /// @param {ID} nodeID
- /// @param {String} propertyName
- /// @param {Object} propertyValue
- ///
- /// @returns {Object}
- /// A value set on property or undefined if not set.
- ///
- /// The first non-undefined return value will be sent with the "satProperty" event (which
- /// may differ from the incoming propertyValue).
- settingProperty: [],
- /// Description.
- ///
- /// @function
- ///
- /// @param {}
- ///
- /// @returns {}
- gettingProperty: [],
- /// Description.
- ///
- /// @function
- ///
- /// @param {ID} nodeID
- /// @param {String} methodName
- /// @param {String[]} methodParameters
- /// @param {String} methodBody
- ///
- /// @returns {Handler} methodHandler
- creatingMethod: [ /* nodeID, methodName, methodParameters, methodBody */ ],
- // TODO: deletingMethod
- /// Description.
- ///
- /// @function
- ///
- /// @param {ID} nodeID
- /// @param {String} methodName
- /// @param {Handler} methodHandler
- ///
- /// @returns {Handler} methodHandler
- settingMethod: [ /* nodeID, methodName, methodHandler */ ],
- /// Description.
- ///
- /// @function
- ///
- /// @param {ID} nodeID
- /// @param {String} methodName
- ///
- /// @returns {Handler} methodHandler
- gettingMethod: [ /* nodeID, methodName */ ],
- /// Description.
- ///
- /// @function
- ///
- /// @param {ID} nodeID
- /// @param {String} methodName
- /// @param {String[]} methodParameters
- ///
- /// @returns {}
- callingMethod: [ /* nodeID, methodName, methodParameters */ ],
- /// Description.
- ///
- /// @function
- ///
- /// @param {ID} nodeID
- /// @param {String} eventName
- /// @param {ListenerID} eventListenerID
- /// @param {Handler} eventHandler
- /// @param {ID} eventContextID
- /// @param {String[]} eventPhases
- ///
- /// @returns {Boolean}
- addingEventListener: [ /* nodeID, eventName, eventListenerID, eventHandler, eventContextID, eventPhases */ ],
- /// Description.
- ///
- /// @function
- ///
- /// @param {ID} nodeID
- /// @param {String} eventName
- /// @param {ListenerID} eventListenerID
- ///
- /// @returns {Boolean}
- removingEventListener: [ /* nodeID, eventName, eventListenerID */ ],
- /// Description.
- ///
- /// @function
- ///
- /// @param {ID} nodeID
- /// @param {String} eventName
- /// @param {ListenerID} eventListenerID
- /// @param {Listener} eventListener
- ///
- /// @returns {Listener}
- settingEventListener: [ /* nodeID, eventName, eventListenerID, eventListener */ ],
- /// Description.
- ///
- /// @function
- ///
- /// @param {ID} nodeID
- /// @param {String} eventName
- /// @param {ListenerID} eventListenerID
- ///
- /// @returns {Listener}
- gettingEventListener: [ /* nodeID, eventName, eventListenerID */ ],
- /// Description.
- ///
- /// @function
- ///
- /// @param {ID} nodeID
- /// @param {String} eventName
- /// @param {ID} eventContextID
- ///
- /// @returns {}
- flushingEventListeners: [ /* nodeID, eventName, eventContextID */ ],
- /// Description.
- ///
- /// @function
- ///
- /// @param {ID} nodeID
- /// @param {String} eventName
- /// @param {String[]} eventParameters
- ///
- /// @returns {}
- creatingEvent: [ /* nodeID, eventName, eventParameters */ ],
- // TODO: deletingEvent
- /// Description.
- ///
- /// @function
- ///
- /// @param {ID} nodeID
- /// @param {String} eventName
- /// @param {String[]} eventParameters
- ///
- /// @returns {}
- firingEvent: [ /* nodeID, eventName, eventParameters */ ],
- /// Description.
- ///
- /// @function
- ///
- /// @param {}
- /// @returns {}
- executing: [],
- /// Time has changed, probably by about the same amount as last time.
- ///
- /// Don't rely on `ticking` notifications; but if you do, don't rely on them to arrive at
- /// any particular rate. `ticking` may be removed in the future to allow the reflector to
- /// vary the idle message interval.
- ///
- /// To schedule actions for certain times, use the `when` parameter in the
- /// {@link module:vwf/kernel/model Kernel API}.
- ///
- /// @function
- ///
- /// @param {Number} time
- ///
- /// @returns {}
- ///
- /// @deprecated in version 0.6.23. Use the {@link module:vwf/kernel/model Kernel API} `when`
- /// parameter to schedule future actions.
- ticking: [],
- /// Description.
- ///
- /// @callback module:vwf/api/model~readyCallback
- ///
- /// @param {Boolean} ready
- };
- return exports;
- } );
|