1 12 13 package org.w3c.dom; 14 15 25 public interface UserDataHandler { 26 30 public static final short NODE_CLONED = 1; 31 34 public static final short NODE_IMPORTED = 2; 35 41 public static final short NODE_DELETED = 3; 42 45 public static final short NODE_RENAMED = 4; 46 49 public static final short NODE_ADOPTED = 5; 50 51 66 public void handle(short operation, 67 String key, 68 Object data, 69 Node src, 70 Node dst); 71 72 } 73 | Popular Tags |