1998-06-04 03:36:47 +04:00
|
|
|
interface Test : Node {
|
|
|
|
attribute Element element;
|
|
|
|
attribute long type;
|
|
|
|
readonly attribute boolean hasChildren;
|
|
|
|
attribute wstring name;
|
|
|
|
|
|
|
|
Element getChild(in Node foo, in long index);
|
|
|
|
long createChildren(in wstring ids, in boolean new);
|
|
|
|
boolean isNew();
|
|
|
|
wstring rename(in wstring newName);
|
1998-07-09 03:44:46 +04:00
|
|
|
wstring setTimeout(in wstring expr /* ... */);
|
1998-06-04 03:36:47 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
interface Test2 {
|
|
|
|
readonly attribute Node me;
|
|
|
|
attribute boolean foo;
|
|
|
|
|
1998-08-04 04:08:29 +04:00
|
|
|
Document getMyDocument(/* ... */);
|
1998-06-04 03:36:47 +04:00
|
|
|
};
|