/home/andrew/Documents/cellml-api-doxygen/interfaces/CellML_events.idl Source File

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  */
17 {
21  const unsigned short MODIFICATION = 1;
22  const unsigned short ADDITION = 2;
23  const unsigned short REMOVAL = 3;
24 
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 };
Back to Top