CellML API interfaces/CellML_events.idl Source File Main Page Related Pages Namespaces Classes Files File List File Members All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages CellML_events.idl Go to the documentation of this file. 1 #include "CellML_APISPEC.idl" 2 #include "DOM_events.idl" 3 11 module cellml_events 12 { 13 /* 14 * This interface represents an modification event in the cellml document 15 */ 16 interface MutationEvent : events::Event 17 { 21 const unsigned short MODIFICATION = 1; 22 const unsigned short ADDITION = 2; 23 const unsigned short REMOVAL = 3; 24 29 readonly attribute cellml_api::CellMLElement relatedElement; 30 34 readonly attribute dom::DOMString prevValue; 35 39 readonly attribute dom::DOMString newValue; 40 45 readonly attribute dom::DOMString attrLocalName; 46 50 readonly attribute dom::DOMString attrNamespaceURI; 51 55 readonly attribute unsigned short attrChange; 56 }; 57 #pragma terminal-interface 58 }; CellML API Documentation Downloads Applications Support