diff options
| author | Bob Jamison <ishmalius@gmail.com> | 2008-03-20 19:18:57 +0000 |
|---|---|---|
| committer | ishmal <ishmal@users.sourceforge.net> | 2008-03-20 19:18:57 +0000 |
| commit | ec7314a1ee6f40d2569579f9e0b61936dfcc834b (patch) | |
| tree | e471b7407dd9bb9d9c6cfe5eaca50d65fd635daa /src/bind/java | |
| parent | Change from DOM Level 3 Views to Level 2 to sync with CSS (diff) | |
| download | inkscape-ec7314a1ee6f40d2569579f9e0b61936dfcc834b.tar.gz inkscape-ec7314a1ee6f40d2569579f9e0b61936dfcc834b.zip | |
Change from Level3 to Level2 Views
(bzr r5132)
Diffstat (limited to 'src/bind/java')
| -rw-r--r-- | src/bind/java/org/w3c/dom/views/AbstractView.java | 27 | ||||
| -rw-r--r-- | src/bind/java/org/w3c/dom/views/DocumentView.java | 30 |
2 files changed, 57 insertions, 0 deletions
diff --git a/src/bind/java/org/w3c/dom/views/AbstractView.java b/src/bind/java/org/w3c/dom/views/AbstractView.java new file mode 100644 index 000000000..97e8f0e2b --- /dev/null +++ b/src/bind/java/org/w3c/dom/views/AbstractView.java @@ -0,0 +1,27 @@ +/* + * Copyright (c) 2000 World Wide Web Consortium, + * (Massachusetts Institute of Technology, Institut National de + * Recherche en Informatique et en Automatique, Keio University). All + * Rights Reserved. This program is distributed under the W3C's Software + * Intellectual Property License. This program is distributed in the + * hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. + * See W3C License http://www.w3.org/Consortium/Legal/ for more details. + */ + +package org.w3c.dom.views; + +/** + * A base interface that all views shall derive from. + * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Views-20001113'>Document Object Model (DOM) Level 2 Views Specification</a>. + * @since DOM Level 2 + */ +public interface AbstractView { + /** + * The source <code>DocumentView</code> of which this is an + * <code>AbstractView</code>. + */ + public DocumentView getDocument(); + +} diff --git a/src/bind/java/org/w3c/dom/views/DocumentView.java b/src/bind/java/org/w3c/dom/views/DocumentView.java new file mode 100644 index 000000000..2cb9eebb8 --- /dev/null +++ b/src/bind/java/org/w3c/dom/views/DocumentView.java @@ -0,0 +1,30 @@ +/* + * Copyright (c) 2000 World Wide Web Consortium, + * (Massachusetts Institute of Technology, Institut National de + * Recherche en Informatique et en Automatique, Keio University). All + * Rights Reserved. This program is distributed under the W3C's Software + * Intellectual Property License. This program is distributed in the + * hope that it will be useful, but WITHOUT ANY WARRANTY; without even + * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. + * See W3C License http://www.w3.org/Consortium/Legal/ for more details. + */ + +package org.w3c.dom.views; + +/** + * The <code>DocumentView</code> interface is implemented by + * <code>Document</code> objects in DOM implementations supporting DOM + * Views. It provides an attribute to retrieve the default view of a + * document. + * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Views-20001113'>Document Object Model (DOM) Level 2 Views Specification</a>. + * @since DOM Level 2 + */ +public interface DocumentView { + /** + * The default <code>AbstractView</code> for this <code>Document</code>, + * or <code>null</code> if none available. + */ + public AbstractView getDefaultView(); + +} |
