代码搜索:node
找到约 10,000 项符合「node」的源代码
代码结果 10,000
www.eeworm.com/read/363641/9941346
cpp astarpathfinder.cpp
//------------------------------------------------------------------------------
// PROJECT: The A* Pathfinder base Class
// FILE: ASTAR.CPP
// OVERVIEW:
// -Pretty good working Astar Pathfin
www.eeworm.com/read/166568/10016062
java compactdomsource.java
package javax.xml.transform.dom;
public class DOMSource implements Source {
public static final String FEATURE =
"http://javax.xml.transform.dom.DOMSource/feature";
public DOMSource() {}
www.eeworm.com/read/166568/10016067
java compactdomresult.java
package javax.xml.transform.dom;
public class DOMResult implements Result {
public static final String FEATURE =
"http://javax.xml.transform.dom.DOMResult/feature";
public DOMResult();
publ
www.eeworm.com/read/166568/10016082
java cdatautility.java
import org.w3c.dom.*;
public class CDATAUtility {
// Recursively descend the tree converting all CDATA sections
// to text nodes and merging them with adjacent text nodes.
public static void
www.eeworm.com/read/166568/10016093
java nbsputility.java
import org.w3c.dom.*;
public class NBSPUtility {
// Recursively descend the tree replacing all non-breaking
// spaces with
public static void addEntityReferences(Node node) {
www.eeworm.com/read/166568/10016420
java treereporter.java
import javax.xml.parsers.*; // JAXP
import org.w3c.dom.Node;
import org.xml.sax.SAXException;
import java.io.IOException;
public class TreeReporter {
public static void main(String[] args) {
www.eeworm.com/read/166568/10016427
java propertyprinter.java
import org.w3c.dom.*;
import java.io.*;
public class PropertyPrinter {
private Writer out;
public PropertyPrinter(Writer out) {
if (out == null) {
throw new NullPointerException("W
www.eeworm.com/read/166568/10016434
java nodetyper.java
import org.w3c.dom.Node;
public class NodeTyper {
public static String getTypeName(Node node) {
int type = node.getNodeType();
/* Yes, getNodeType() returns a short, but Java will
www.eeworm.com/read/361402/10054603
java tree234.java
// tree234.java
// demonstrates 234 tree
// to run this program: C>java Tree234App
import java.io.*;
////////////////////////////////////////////////////////////////
class DataItem
{
publ
www.eeworm.com/read/361363/10056962
java domprinter.java
import java.io.File;
import java.io.IOException;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;