vidur%netscape.com c6800e0a6e Added generation of declaration and forwarding macros. Better handling of families of interfaces.
git-svn-id: svn://10.0.0.236/trunk@7191 18797224-902f-48f8-a5cc-f745e15eee43
1998-08-04 00:08:29 +00:00

20 lines
478 B
Plaintext

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);
wstring setTimeout(in wstring expr /* ... */);
};
interface Test2 {
readonly attribute Node me;
attribute boolean foo;
Document getMyDocument(/* ... */);
};