new CmlMetaDataReader()
CML element reader.
- Source:
Extends
Methods
-
addEventListener(eventName, listener, thisArg) → {Object}
-
Add an event handler.
Parameters:
Name Type Description eventNameString Name of event. listenerfunction Handler function. thisArgObject The scope object applied when the handler is called. - Inherited From:
- Source:
Returns:
Handler info object on success, null on fail.- Type
- Object
-
addOnceEventListener(eventName, listener, thisArg) → {Object}
-
Add an event handler that will only be evoked once.
Parameters:
Name Type Description eventNameString Name of event. listenerfunction Handler function. thisArgObject The scope object applied when the handler is called. - Inherited From:
- Source:
Returns:
Handler info object on success, null on fail.- Type
- Object
-
afterInitialization()
-
Do jobs after initialization, desendants can override this method
- Inherited From:
- Source:
-
assign(srcObj)
-
Assign data in srcObj to this object.
Parameters:
Name Type Description srcObjObjectEx - Inherited From:
- Source:
-
assignTo(targetObj)
-
Assign data in this object to targetObj.
Parameters:
Name Type Description targetObjObjectEx - Inherited From:
- Source:
-
beginUpdate()
-
Begin to update multiple properties of object. In update state, all changed properties will not invoke propertySet event until method endUpdate is called.
- Inherited From:
- Source:
-
clone() → {ObjectEx}
-
Returns a cloned object.
- Inherited From:
- Source:
Returns:
- Type
- ObjectEx
-
copyPropsTo(dest)
-
Copy property values to dest object. Dest must be a desendant of ObjectEx.
Parameters:
Name Type Description destObjectEx - Inherited From:
- Source:
-
defineEvent(eventName) → {Object}
-
Define an event in class. Event is actually a special property with type Class.EventHandlerList
Parameters:
Name Type Description eventNameString Name of event. - Inherited From:
- Deprecated:
- Yes
- Source:
Returns:
Property info object created.- Type
- Object
-
defineProp(propName, options) → {Object}
-
Define a property in class.
Parameters:
Name Type Description propNameString Name of property, case sensitive. optionsObject A hash object, may contains the following fields: { dataType: type of property data, a string constant in DataType or a class name. //storeField: field in object to store property value, // not allowed for running speed getter: getter function, setter: setter function, if set to null, the property will be read-only, serializable: boolean, whether the property should be save or restore in serialization. Default is true. defaultValue: default value of property, can only be simple type (number, string, bool...) } - Inherited From:
- Source:
Returns:
Property info object added to property list.- Type
- Object
-
doEndUpdate()
-
Actual work of endUpdate, just invoke all property change events.
- Inherited From:
- Source:
-
doPropChanged(propName, newValue)
-
Do some job when a property value is changed. Descendants can override this.
Parameters:
Name Type Description propNameString Name of property. newValueVariant New value of the property. - Inherited From:
- Source:
-
endUpdate()
-
Update end and notify all properties changed after calling of beginUpdate.
- Inherited From:
- Source:
-
finalize()
-
Free resources used. Like finalize method in Java.
- Inherited From:
- Source:
-
getAllPropList() → {Class.PropList}
-
Get list of all properties in this class, including ones inherited from parent class.
- Inherited From:
- Source:
Returns:
- Type
- Class.PropList
-
getClass() → {Object}
-
Get class of this object.
- Inherited From:
- Source:
Returns:
Class object.- Type
- Object
-
getClassLocalName() → {String}
-
Get last part of class name of this object. For example, 'Atom' will be returned by instance of class 'Kekule.Atom'.
- Inherited From:
- Source:
Returns:
Last part of class name of object.- Type
- String
-
getClassName() → {String}
-
Get class name of this object, usually returns CLASS_NAME field.
- Inherited From:
- Source:
Returns:
Class name of object.- Type
- String
-
getEventHandlerList(eventName) → {Class.EventHandlerList}
-
Get the handler list of a event.
Parameters:
Name Type Description eventNameString Name of event. - Inherited From:
- Source:
Returns:
Handler list of event. If this event does not exist, null is returned.- Type
- Class.EventHandlerList
-
getOwnPropList() → {Class.PropList}
-
Get property list of this class. The properties inherited from parent class will not be returned.
- Inherited From:
- Source:
Returns:
- Type
- Class.PropList
-
getPropertyDataType(propName) → {String}
-
Returns type constants of property.
Parameters:
Name Type Description propNameString - Inherited From:
- Source:
Returns:
Values from DataType.- Type
- String
-
getPropInfo(propName, ownPropertyOnly) → {Object}
-
Get property info object from the property list of current class.
Parameters:
Name Type Description propNameString Name of property. ownPropertyOnlyBool If true, only property defined in this class will be checked. - Inherited From:
- Source:
Returns:
Property info object found. If there is no such a property, null is returned.- Type
- Object
-
getPropListOfScopes(scopes) → {Class.PropList}
-
Get list of all properties of certain scopes in this class, including ones inherited from parent class.
Parameters:
Name Type Description scopesArray Array item from Class.PropertyScope. - Inherited From:
- Source:
Returns:
- Type
- Class.PropList
-
getPropStoreFieldValue(propName) → {Variant}
-
Get value of a property's store field. Use this method to get property value and avoid the call of property getter. Note: if the property has no store field, this method may returns null or undefined.
Parameters:
Name Type Description propNameString Name of property. - Inherited From:
- Source:
Returns:
Value of property. If property does not exists, null is returned.- Type
- Variant
-
getPropValue(propName) → {Variant}
-
Get value of a property.
Parameters:
Name Type Description propNameString Name of property. - Inherited From:
- Source:
Returns:
Value of property. If property does not exists, null is returned.- Type
- Variant
-
getPropValues(propNames) → {Hash}
-
Returns values of a series of properties.
Parameters:
Name Type Description propNamesVariant Can be an array of property names, also can be an object while the direct field names of object will be regarded as property names. - Inherited From:
- Source:
Returns:
Stores all property name-value pair.- Type
- Hash
-
getPrototype() → {Object}
-
Get prototype of this object.
- Inherited From:
- Source:
Returns:
- Type
- Object
-
getSerializationName() → {String}
-
Returns a name to be used in serialization. Descendants can override this.
- Inherited From:
- Source:
Returns:
- Type
- String
-
getSuperClass() → {Object}
-
Get super class of this object.
- Inherited From:
- Source:
Returns:
Class object.- Type
- Object
-
getSuperClassPrototype() → {Object}
-
Get prototype of super class.
- Inherited From:
- Source:
Returns:
If there is no super class, null is returned.- Type
- Object
-
hasDirectProperty(propName) → {Boolean}
-
Check if property is defined in current class (not inherited from super class).
Parameters:
Name Type Description propNameString Name of property. - Inherited From:
- Source:
Returns:
- Type
- Boolean
-
hasProperty(propName) → {Boolean}
-
Check if property exists in current class.
Parameters:
Name Type Description propNameString Name of property. - Inherited From:
- Source:
Returns:
- Type
- Boolean
-
initPropValues()
-
Set initial value of properties. Desendants can override this method.
- Inherited From:
- Source:
-
invokeEvent(eventName, event)
-
Invoke an event and call all corresponding handlers (listeners).
Parameters:
Name Type Description eventNameString Event to be invoked. eventObject A hash object with information about event. At least should include the following fields: { name: name of event, target: which object invoke this event, generally this object } If this parameter is not set, the default value {eventName, this} will be used. - Inherited From:
- Source:
-
isEventHandlerList(value) → {bool}
-
Check if a object is Class.EventHandlerList.
Parameters:
Name Type Description valueObject - Inherited From:
- Source:
Returns:
True or false.- Type
- bool
-
isPropertySerializable(propName) → {Bool}
-
Returns if property is serializable.
Parameters:
Name Type Description propNameString - Inherited From:
- Source:
Returns:
- Type
- Bool
-
isPropUpdated(propName)
-
Check whether property is changed in begin/endUpdate procedure.
Parameters:
Name Type Description propNameObject - Inherited From:
- Source:
-
isUpdating()
-
Check if object is in updating state.
- Inherited From:
- Source:
-
iterateChildElements(elem, parentObj)
-
Iterate through and read all direct children of elem.
Parameters:
Name Type Description elemObject parentObjObject - Inherited From:
- Source:
-
loaded()
-
Called after this object is loaded by a serialization system. Descendants may override this.
- Inherited From:
- Source:
-
loadObj(srcNode, serializerOrName)
-
load current object from srcNode.
Parameters:
Name Type Description srcNodeObject Storage node to load object. Different serializer requires different node. serializerOrNameVariant A ObjSerializer instance or name registered in ObjSerializerFactory. Can be null to use the default serializer. - Inherited From:
- Source:
-
notifyPropSet(propName, newValue)
-
Notify that a property value is set
Parameters:
Name Type Description propNameString Name of property. newValueVariant New value of the property. - Inherited From:
- Source:
-
objectChange()
-
Called when object is changed.
- Inherited From:
- Source:
-
off(eventName, listener, thisArg)
-
Remove an event handler, shortcut for (@link ObjectEx.removeEventListener}.
Parameters:
Name Type Description eventNameString Name of event. listenerfunction Handler function. thisArgObject The scope object applied when the handler is called. If not set, all listenr function in list will be removed. - Inherited From:
- Source:
-
on(eventName, listener, thisArg) → {Object}
-
Add an event handler, shortcut for ObjectEx.addEventListener.
Parameters:
Name Type Description eventNameString Name of event. listenerfunction Handler function. thisArgObject The scope object applied when the handler is called. - Inherited From:
- Source:
Returns:
Handler info object on success, null on fail.- Type
- Object
-
once(eventName, listener, thisArg) → {Object}
-
Add an event handler that will only be evoked once, shortcut for ObjectEx.addOnceEventListener.
Parameters:
Name Type Description eventNameString Name of event. listenerfunction Handler function. thisArgObject The scope object applied when the handler is called. - Inherited From:
- Source:
Returns:
Handler info object on success, null on fail.- Type
- Object
-
overwriteMethod(methodName, newMethod) → {ObjectEx}
-
Overwrite method of object instance (rather than prototype) with a new one.
Parameters:
Name Type Description methodNameString newMethodFunc New function. The arguments of function should be same as overwritten one plus a extra leading param stores the old method. e.g. Overwrite getPropValue method:
var obj = new ObjectEx();
obj.overwriteMethod('getPropValue', function($old, propName)
{
console.log('new method'); return $old(propName); });- Inherited From:
- Source:
Returns:
- Type
- ObjectEx
-
readChildElement(elem, parentObj) → {Variant}
-
Read and handle child elements,
Parameters:
Name Type Description elemObject parentObjObject - Inherited From:
- Source:
Returns:
- Type
- Variant
-
readChildElementDef(elem, parentObj) → {Variant}
-
A default method to read child elements, just ask CmlElementReaderFactory to create a suitable reader and use the reader to read.
Parameters:
Name Type Description elemObject parentObjObject - Inherited From:
- Source:
Returns:
- Type
- Variant
-
readElement(elem, parentObj) → {Variant}
-
Read an element in CML document and returns a proper Kekule object or insert something into parentObj.
Parameters:
Name Type Description elemObject parentObjKekule.ChemObject - Inherited From:
- Source:
Returns:
- Type
- Variant
-
relayEvent(eventName, event)
-
Relay event from child of this object.
Parameters:
Name Type Description eventNameString Event to be invoked. eventObject A hash object with information about event. - Inherited From:
- Source:
-
removeEventListener(eventName, listener, thisArg)
-
Remove an event handler.
Parameters:
Name Type Description eventNameString Name of event. listenerfunction Handler function. thisArgObject The scope object applied when the handler is called. If not set, all listenr function in list will be removed. - Inherited From:
- Source:
-
saved()
-
Called after this object is saved through a serialization system. Descendants may override this.
- Inherited From:
- Source:
-
saveObj(destNode, serializerOrName, options)
-
Save current object to destNode.
Parameters:
Name Type Description destNodeObject Storage node to save object. Different serializer requires different node. serializerOrNameVariant A ObjSerializer instance or name registered in ObjSerializerFactory. Can be null to use the default serializer. optionsHash - Inherited From:
- Source:
-
setPropStoreFieldValue(propName) → {Variant}
-
Set value of a property's store field. Use this method to set property value and avoid the call of property setter. Readonly property can also be changed in this method. Note: if the property has no store field, this method will has no effect on property.
Parameters:
Name Type Description propNameString Name of property. - Inherited From:
- Source:
Returns:
Value of property. If property does not exists, null is returned.- Type
- Variant
-
setPropValue(propName, value, ignoreReadOnly)
-
Set value of a property.
Parameters:
Name Type Description propNameString Name of property. valueVariant Value of the property. ignoreReadOnlybool Try set the value directly through store field even if the property is a readonly one (without a setter). - Inherited From:
- Source:
-
setPropValues(hash, ignoreReadOnly)
-
Set a series of property.
Parameters:
Name Type Description hashHash A hash object, its key and values will be used to set property value. ignoreReadOnlybool Try set the value directly through store field even if the property is a readonly one (without a setter). - Inherited From:
- Source:
-
setPropValueX()
-
Set value of a property. Similar to ObjectEx.setPropValue but can pass in multiple params. The first param is always the property name while the rest will be put into setter method (setXXX).
- Inherited From:
- Source:
-
stopEventPropagation(event)
-
Stop propagation of event, disallow it to bubble to higher level.
Parameters:
Name Type Description eventObject - Inherited From:
- Source:
Events
-
change
-
Invoked when the object has been modified. event param of it has one fields: {changedPropNames: Array}
- Inherited From:
- Source:
-
finalize
-
Invoked when ObjectEx#finalize is called and the object is released. event param of it has one fields: {obj}
- Inherited From:
- Source:
-
propValueSet
-
Invoked when a property value is set by its setter event param of it has two fields: {propName, propValue} If property enablePropValueSetEvent is false, this event will never be fired.
- Inherited From:
- Source: