- From: Ray Whitmer <raydwhitmer@aol.com>
- Date: Tue, 01 Jul 2003 07:51:56 -0600
- To: Keizi@mail.co.kr
- CC: www-dom@w3.org
Keizi@mail.co.kr wrote: >http://www.w3.org/TR/DOM-Level-2-Core/glossary.html#dt-interface >define the term 'interface' as a set of methods. > >But IDLs of DOM declare properties as well as methods. >How to implement such properties on interfaces? > >What is standard de facto for implementation of that? >As Java does, ::getXXX() and ::setXXX() is the answer? >Or nothing special but up to each implementators? > >Best regard, >kz. > It is generally up to the binding creator, not the implementor, to follow the rules of the binding when doing this sort of thing. In the case of Java, this means using a getter and setter. In the case of ECMAScript, this typically is exposed as a real attribute. When creating other bindings, the creator should use whatever is natural for the binding. Ray
Received on Tuesday, 1 July 2003 09:51:54 UTC