Path: blob/master/src/java.xml/share/classes/org/w3c/dom/UserDataHandler.java
40948 views
/*1* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.2*3* This code is free software; you can redistribute it and/or modify it4* under the terms of the GNU General Public License version 2 only, as5* published by the Free Software Foundation. Oracle designates this6* particular file as subject to the "Classpath" exception as provided7* by Oracle in the LICENSE file that accompanied this code.8*9* This code is distributed in the hope that it will be useful, but WITHOUT10* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or11* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License12* version 2 for more details (a copy is included in the LICENSE file that13* accompanied this code).14*15* You should have received a copy of the GNU General Public License version16* 2 along with this work; if not, write to the Free Software Foundation,17* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.18*19* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA20* or visit www.oracle.com if you need additional information or have any21* questions.22*/2324/*25* This file is available under and governed by the GNU General Public26* License version 2 only, as published by the Free Software Foundation.27* However, the following notice accompanied the original version of this28* file and, per its terms, should not be removed:29*30* Copyright (c) 2004 World Wide Web Consortium,31*32* (Massachusetts Institute of Technology, European Research Consortium for33* Informatics and Mathematics, Keio University). All Rights Reserved. This34* work is distributed under the W3C(r) Software License [1] in the hope that35* it will be useful, but WITHOUT ANY WARRANTY; without even the implied36* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.37*38* [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-2002123139*/4041package org.w3c.dom;4243/**44* When associating an object to a key on a node using45* <code>Node.setUserData()</code> the application can provide a handler46* that gets called when the node the object is associated to is being47* cloned, imported, or renamed. This can be used by the application to48* implement various behaviors regarding the data it associates to the DOM49* nodes. This interface defines that handler.50* <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.51* @since 1.5, DOM Level 352*/53public interface UserDataHandler {54// OperationType55/**56* The node is cloned, using <code>Node.cloneNode()</code>.57*/58public static final short NODE_CLONED = 1;59/**60* The node is imported, using <code>Document.importNode()</code>.61*/62public static final short NODE_IMPORTED = 2;63/**64* The node is deleted.65* <p ><b>Note:</b> This may not be supported or may not be reliable in66* certain environments, such as Java, where the implementation has no67* real control over when objects are actually deleted.68*/69public static final short NODE_DELETED = 3;70/**71* The node is renamed, using <code>Document.renameNode()</code>.72*/73public static final short NODE_RENAMED = 4;74/**75* The node is adopted, using <code>Document.adoptNode()</code>.76*/77public static final short NODE_ADOPTED = 5;7879/**80* This method is called whenever the node for which this handler is81* registered is imported or cloned.82* <br> DOM applications must not raise exceptions in a83* <code>UserDataHandler</code>. The effect of throwing exceptions from84* the handler is DOM implementation dependent.85* @param operation Specifies the type of operation that is being86* performed on the node.87* @param key Specifies the key for which this handler is being called.88* @param data Specifies the data for which this handler is being called.89* @param src Specifies the node being cloned, adopted, imported, or90* renamed. This is <code>null</code> when the node is being deleted.91* @param dst Specifies the node newly created if any, or92* <code>null</code>.93*/94public void handle(short operation,95String key,96Object data,97Node src,98Node dst);99100}101102103