Code

(no commit message)
[inkscape.git] / trunk / src / bind / java / org / inkscape / dom / events / MutationEventImpl.java
diff --git a/trunk/src/bind/java/org/inkscape/dom/events/MutationEventImpl.java b/trunk/src/bind/java/org/inkscape/dom/events/MutationEventImpl.java
new file mode 100644 (file)
index 0000000..df3b991
--- /dev/null
@@ -0,0 +1,67 @@
+/**
+ * This is a simple mechanism to bind Inkscape to Java, and thence
+ * to all of the nice things that can be layered upon that.
+ *
+ * Authors:
+ *   Bob Jamison
+ *
+ * Copyright (c) 2007-2008 Inkscape.org
+ *
+ *  This library is free software; you can redistribute it and/or
+ *  modify it under the terms of the GNU Lesser General Public
+ *  License as published by the Free Software Foundation; either
+ *  version 3 of the License, or (at your option) any later version.
+ *
+ *  This library 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 the GNU
+ *  Lesser General Public License for more details.
+ *
+ *  You should have received a copy of the GNU Lesser General Public
+ *  License along with this library; if not, write to the Free Software
+ *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ *  Note that the Events files are implementations of the Java
+ *  interface package found here:
+ *      http://www.w3.org/TR/2003/NOTE-DOM-Level-3-Events-20031107/java-binding.html
+ */
+
+package org.inkscape.dom.events;
+
+import org.w3c.dom.Node;
+
+
+public class MutationEventImpl
+       extends EventImpl
+       implements org.w3c.dom.events.MutationEvent
+{
+public native Node getRelatedNode();
+
+public native String getPrevValue();
+
+public native String getNewValue();
+
+public native String getAttrName();
+
+public native short getAttrChange();
+
+public native void initMutationEvent(String typeArg,
+                              boolean canBubbleArg,
+                              boolean cancelableArg,
+                              Node relatedNodeArg,
+                              String prevValueArg,
+                              String newValueArg,
+                              String attrNameArg,
+                              short attrChangeArg);
+
+public native void initMutationEventNS(String namespaceURI,
+                                String typeArg,
+                                boolean canBubbleArg,
+                                boolean cancelableArg,
+                                Node relatedNodeArg,
+                                String prevValueArg,
+                                String newValueArg,
+                                String attrNameArg,
+                                short attrChangeArg);
+
+}