| author | ajvincent@MTV-AVINCENT |
| Mon Dec 29 14:25:40 2008 -0800 (13 months ago) | |
| changeset 61 | dbfae695a375 |
| child 66 | f8c3fa4cfeb1 |
| permissions | -rw-r--r-- |
1 #include "nsISupports.idl"
2 #include "nsIVariant.idl"
4 [scriptable, uuid(4856bb38-7f24-4050-9aef-a9e313fc6156)]
5 interface nsIDOMStringArray : nsISupports
6 {
7 readonly attribute PRUint32 length;
8 DOMString getStringAtIndex(in PRUint32 index);
9 };
11 [scriptable, uuid(38525198-ba21-47bd-82c2-3d6b81cea6d7)]
12 interface nsIWritableDOMStringArray : nsIDOMStringArray
13 {
14 void appendString(in DOMString newString);
15 };