2000 年 11 月 13 日

附录 A: IDL 定义

本附录包含了对文档对象模型 级别2 视图的完全的 OMG IDL [OMGIDL] 定义。

这些 IDL 文件也可以从 http://www.w3.org/TR/2000/REC-DOM-Level-2-Views-20001113/idl.zip获得。

views.idl:

// File: views.idl

#ifndef _VIEWS_IDL_
#define _VIEWS_IDL_

#include "dom.idl"

#pragma prefix "dom.w3c.org"
module views
{

  interface DocumentView;

  // Introduced in DOM Level 2:
  interface AbstractView {
    readonly attribute DocumentView     document;
  };

  // Introduced in DOM Level 2:
  interface DocumentView {
    readonly attribute AbstractView     defaultView;
  };
};

#endif // _VIEWS_IDL_