Examples of addChild()

  • org.sindice.siren.search.node.TwigQuery.addChild()
    Adds a child clause to the twig query. @throws TooManyClauses if the new number of clauses exceeds the maximum clause number @see #getMaxClauseCount()
  • org.springframework.binding.form.HierarchicalFormModel.addChild()
    Adds a new child to the form model. The child form model will have it's parent set to this.
  • org.springframework.binding.form.support.DefaultFormModel.addChild()
  • org.teiid.query.mapping.xml.MappingSourceNode.addChild()
  • org.teiid.query.processor.relational.GroupingNode.addChild()
  • org.teiid.query.processor.relational.ProjectNode.addChild()
  • org.teiid.query.processor.relational.UnionAllNode.addChild()
  • org.thechiselgroup.choosel.core.client.persistence.Memento.addChild()
  • org.thymeleaf.dom.Document.addChild()
  • org.thymeleaf.dom.Element.addChild()
  • org.thymeleaf.dom.NestableNode.addChild()

    Adds a new child to the node.

    @param newChild the new child to be added.
  • org.tinyuml.draw.CompositeNode.addChild()
  • org.tmatesoft.svn.core.internal.util.SVNSkel.addChild()
  • org.uguess.birt.report.engine.layout.wrapper.impl.AreaFrame.addChild()
  • org.uguess.birt.report.engine.layout.wrapper.impl.MultiAreaFrame.addChild()
  • org.vietspider.html.HTMLNode.addChild()
  • org.vietspider.html.parser.NodeImpl.addChild()
  • org.vietspider.parser.xml.XMLNode.addChild()
  • org.woped.editor.controller.Role.addChild()
  • org.wso2.carbon.mediator.service.builtin.SequenceMediator.addChild()
    @param parent the parent element. @param childElemNS the namespace of the child element. @param childElemName the name of the child element. @param elemKey the optional key used to fetch an input. @return the created child element.
  • org.wso2.carbon.registry.common.ui.utils.TreeNode.addChild()
  • org.xhtmlrenderer.newtable.TableBox.addChild()
  • org.xhtmlrenderer.newtable.TableRowBox.addChild()
  • org.xhtmlrenderer.newtable.TableSectionBox.addChild()
  • org.xhtmlrenderer.render.BlockBox.addChild()
  • org.xith3d.scenegraph.BranchGroup.addChild()
  • org.xmlpull.infoset.XmlElement.addChild()
  • org.xmlpull.v1.builder.XmlElement.addChild()
  • org.zachtaylor.jnodalxml.XmlNode.addChild()
    Shorthand for {@link #addChild(XmlNode)} @param childName Name of the child node to add @return This node @throws XmlException If the child cannot be added, for instance if thisnode is self-closing or has value
  • pedro.model.RecordModel.addChild()
  • prefuse.data.Tree.addChild()
    Add a child node to the given parent node. An edge between the two will also be created. @param parent the parent node id (node table row number) @return the added child node id
  • primitives.cluster.ClusterHead.addChild()
  • primitives.cluster.ClusterNode.addChild()
  • pt.ist.fenixWebFramework.renderers.components.HtmlBlockContainer.addChild()
  • pt.ist.fenixWebFramework.renderers.components.HtmlContainer.addChild()
  • pt.ist.fenixWebFramework.renderers.components.HtmlInlineContainer.addChild()
  • pt.ist.fenixWebFramework.renderers.components.HtmlListItem.addChild()
  • regions.ParentRegion.addChild()
    Adds child. @param child
  • rex.graphics.mdxeditor.mdxbuilder.nodes.MBTFunctionNode.addChild()
  • soot.toolkits.graph.DominatorNode.addChild()
  • tigase.xml.Element.addChild()
  • ugh.dl.DocStruct.addChild()
  • uk.ac.man.cs.mig.util.graph.model.impl.DefaultGraphNode.addChild()
  • uk.co.badgersinfoil.metaas.impl.antlr.LinkedListTree.addChild()
    @deprecated use #addChildWithTokens(LinkedListTree), damnit

  • Examples of org.eclipse.text.edits.TextEdit.addChild()

            if (initialIndentationLevel > 0) {
                // at least correct the indent
                String indentString = createIndentString(initialIndentationLevel);
            ReplaceEdit[] edits = IndentManipulation.getChangeIndentEdits(unformatted, 0, this.tabWidth, this.indentWidth, indentString);
            edit= new MultiTextEdit();
            edit.addChild(new InsertEdit(0, indentString));
            edit.addChildren(edits);
            } else {
               return unformatted;
            }
        }
    View Full Code Here

    Examples of org.eclipse.ui.internal.intro.impl.model.IntroModelRoot.addChild()

            if (!canInjectFrame)
                // Called method handles error.
                return false;

            clonedPage.setId(mangledPageId);
            model.addChild(clonedPage);
            return introURL.showPage(clonedPage.getId(), standbyAsString);
        }

    }
    View Full Code Here

    Examples of org.eclipse.wb.internal.core.utils.xml.DocumentElement.addChild()

          int index = parentElement.indexOf(objectElement);
          // prepare "Cell" element
          {
            cellElement = new DocumentElement();
            cellElement.setTag(m_namespace + "Cell");
            parentElement.addChild(cellElement, index);
          }
          // move "widget" into "Cell"
          cellElement.moveChild(objectElement, 0);
        }
        // set attribute
    View Full Code Here

    Examples of org.eclipse.wb.internal.core.xml.model.XmlObjectInfo.addChild()

          if (object instanceof IsWidgetInfo) {
            object = ((IsWidgetInfo) object).getWrapped();
          }
          XmlObjectInfo parent = findParent(path);
          if (parent != null) {
            parent.addChild(object);
          } else {
            m_rootModel = object;
          }
        }
      }
    View Full Code Here

    Examples of org.erlide.cover.views.model.TestTreeObject.addChild()

                if (node != null) {
                    model.removeChild(node);
                } else {
                    node = new TestTreeObject(description, TestTreeObject.WARN);
                }
                parent.addChild(node);

            } else {
                final TestTreeObject node = model.findNode(description);
                if (node == null) {
                    model.addChildren(new TestTreeObject(description, TestTreeObject.WARN));
    View Full Code Here

    Examples of org.erlide.engine.model.root.IErlElement.addChild()

                return null;
            }
            final IErlFolder f = new ErlFolder(parent, folder);
            final IErlElement p = parent;
            if (p != null) {
                p.addChild(f);
            } else {
                // ErlLogger.warn("creating folder %s in null parent?!", folder
                // .getName());
            }
            return f;
    View Full Code Here

    Examples of org.erlide.engine.model.root.IErlExternal.addChild()

                    // final String name = entry.getName();
                    parent = pathToEntryMap.get(entry.getParentPath());
                    if (entry.isModule()) {
                        final IErlModule module = model.getModuleFromFile(parent,
                                getNameFromPath(path), path, null, path);
                        parent.addChild(module);
                    } else {
                        final String name = getNameFromExternalPath(path);
                        final ErlExternalReferenceEntry externalReferenceEntry = new ErlExternalReferenceEntry(
                                parent, name, path, true, includeDir);
                        pathToEntryMap.put(path, externalReferenceEntry);
    View Full Code Here

    Examples of org.erlide.wrangler.refactoring.duplicatedcode.ui.elements.DuplicatedCodeElement.addChild()

                dupFile.setSuggestedCode(suggStr);
                for (final DuplicatedCodeInstanceElement instance : entry.getValue()) {
                    dupFile.addChild(instance);
                }

                result.addChild(dupFile);
            }

            return result;
        }
    View Full Code Here

    Examples of org.erlide.wrangler.refactoring.duplicatedcode.ui.elements.DuplicatedFileElement.addChild()

                    .entrySet()) {
                final DuplicatedFileElement dupFile = new DuplicatedFileElement(
                        entry.getKey());
                dupFile.setSuggestedCode(suggStr);
                for (final DuplicatedCodeInstanceElement instance : entry.getValue()) {
                    dupFile.addChild(instance);
                }

                result.addChild(dupFile);
            }
    View Full Code Here

    Examples of org.evolizer.versioncontrol.cvs.model.entities.Branch.addChild()

                    copyRevisionNum,
                    revisionNum);
            if (parentTag != null) {
                // If it's a sub branch, I link it to its parent and vice versa
                Branch parentBranch = fBranches.get(parentTag);
                parentBranch.addChild(branch);
                branch.setParent(parentBranch);
                LOGGER.debug(NLS.bind(MapperMessages.SVNModelMapper_isSubBranch, tag, parentBranch.getName()));
            }
            return branch;
        }
    View Full Code Here
    TOP
    Copyright © 2018 www.massapi.com. All rights reserved.
    All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.