Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for childNodes (0.55 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ModelBuilderSupport.java

        protected List<Element> children(Element element, String childName) {
            List<Element> matches = new ArrayList<Element>();
            NodeList childNodes = element.getChildNodes();
            for (int i = 0; i < childNodes.getLength(); i++) {
                Node node = childNodes.item(i);
                if (node instanceof Element) {
                    Element childElement = (Element) node;
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.2K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                Model childModel,
                ModelSource childSource,
                ModelBuilderRequest request,
                DefaultModelProblemCollector problems)
                throws ModelBuilderException {
            ModelData parentData = null;
    
            Parent parent = childModel.getParent();
            if (parent != null) {
                parentData = readParentLocally(childModel, childSource, request, problems);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 61.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                final Node childNode = nodeList.item(i);
                if (isPrunedTag(childNode, prunedTags)) {
                    removedNodeList.add(childNode);
                } else {
                    childNodeList.add(childNode);
                }
            }
    
            for (final Node childNode : removedNodeList) {
                node.removeChild(childNode);
            }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 41.9K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/project/MavenProjectTest.java

            parentModel.addModule("../child");
    
            MavenProject parentProject = new MavenProject(parentModel);
    
            Model childModel = new Model();
            childModel.setArtifactId("artifact");
    
            MavenProject childProject = new MavenProject(childModel);
    
            File childFile = new File(
                    System.getProperty("java.io.tmpdir"),
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 8K bytes
    - Viewed (0)
Back to top