1998-06-03 23:36:47 +00: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-08 23:44:46 +00:00
|
|
|
wstring setTimeout(in wstring expr /* ... */);
|
1998-06-03 23:36:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
interface Test2 {
|
|
|
|
readonly attribute Node me;
|
|
|
|
attribute boolean foo;
|
|
|
|
|
1998-08-04 00:08:29 +00:00
|
|
|
Document getMyDocument(/* ... */);
|
1998-06-03 23:36:47 +00:00
|
|
|
};
|