Java tutorial
//package com.java2s; import org.w3c.dom.Document; import org.w3c.dom.Node; import org.w3c.dom.ls.DOMImplementationLS; public class Main { protected static DOMImplementationLS getDOMImplementationLS(Node node) { Document document = node.getOwnerDocument(); return (DOMImplementationLS) document.getImplementation(); } }