~ubuntu-branches/ubuntu/karmic/libxerces2-java/karmic

« back to all changes in this revision

Viewing changes to debian/dom2-bindings/org/w3c/dom/html/HTMLModElement.java

  • Committer: Bazaar Package Importer
  • Author(s): Charles Majola
  • Date: 2005-12-09 11:58:21 UTC
  • Revision ID: james.westby@ubuntu.com-20051209115821-ppifmmty1jv59hik
Tags: 2.6.2-3ubuntu3
Fix Build depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (c) 1998 World Wide Web Consortium, (Massachusetts Institute of
3
 
 * Technology, Institut National de Recherche en Informatique et en
4
 
 * Automatique, Keio University).
5
 
 * All Rights Reserved. http://www.w3.org/Consortium/Legal/
6
 
 */
7
 
 
8
 
package org.w3c.dom.html;
9
 
 
10
 
import org.w3c.dom.*;
11
 
 
12
 
/**
13
 
 * Notice of modification to part of a document. See the  INS  and DEL  
14
 
 * element definitions in HTML 4.0. 
15
 
 */
16
 
public interface HTMLModElement extends HTMLElement {
17
 
  /**
18
 
   * A URI designating a document that describes the reason forthe change. See 
19
 
   * the cite attribute definition in HTML 4.0.
20
 
   */
21
 
  public String             getCite();
22
 
  public void               setCite(String cite);
23
 
  /**
24
 
   * The date and time of the change. See the datetime attribute definition in 
25
 
   * HTML 4.0.
26
 
   */
27
 
  public String             getDateTime();
28
 
  public void               setDateTime(String dateTime);
29
 
}
30