HTMLModElement.java revision 286
4176N/A/*
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
0N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
2362N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2362N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
1178N/A * or visit www.oracle.com if you need additional information or have any
4176N/A * questions.
0N/A */
0N/A
1178N/A/*
0N/A * This file is available under and governed by the GNU General Public
0N/A * License version 2 only, as published by the Free Software Foundation.
0N/A * However, the following notice accompanied the original version of this
0N/A * file and, per its terms, should not be removed:
4176N/A *
0N/A * Copyright (c) 2000 World Wide Web Consortium,
0N/A * (Massachusetts Institute of Technology, Institut National de
0N/A * Recherche en Informatique et en Automatique, Keio University). All
0N/A * Rights Reserved. This program is distributed under the W3C's Software
0N/A * Intellectual Property License. This program is distributed in the
0N/A * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
0N/A * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
0N/A * PURPOSE. See W3C License http://www.w3.org/Consortium/Legal/ for more
0N/A * details.
0N/A */
0N/A
0N/Apackage org.w3c.dom.html;
0N/A
0N/A/**
0N/A * Notice of modification to part of a document. See the INS and DEL
0N/A * element definitions in HTML 4.0.
0N/A * <p>See also the <a href='http://www.w3.org/TR/2000/CR-DOM-Level-2-20000510'>Document Object Model (DOM) Level 2 Specification</a>.
0N/A */
0N/Apublic interface HTMLModElement extends HTMLElement {
0N/A /**
0N/A * A URI designating a document that describes the reason for the change.
0N/A * See the cite attribute definition in HTML 4.0.
0N/A */
4176N/A public String getCite();
0N/A public void setCite(String cite);
0N/A
0N/A /**
0N/A * The date and time of the change. See the datetime attribute definition
4176N/A * in HTML 4.0.
0N/A */
0N/A public String getDateTime();
0N/A public void setDateTime(String dateTime);
0N/A
0N/A}
0N/A