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.pentaho.ui.xul.containers.XulVbox.addChild()

        stepLabel.setValue(this.getStepName());
        stepLabel.setFlex(1);
        stepLabel.setDisabled(true);
        row.addChild(stepLabel);

        stepContainer.addChild(row);
      }

      /* (non-Javadoc)
       * @see org.pentaho.reporting.engine.classic.wizard.ui.xul.components.WizardStep#stepActivating()
       */
     
    View Full Code Here

    Examples of org.piccolo2d.PCamera.addChild()

            final PCanvas canvas = new PCanvas();
            final PCamera camera = canvas.getCamera();
           
            final PText tooltipNode = new PText();
            tooltipNode.setPickable(false);
            camera.addChild(tooltipNode);

            camera.addInputEventListener(new PBasicInputEventHandler() {
                public void mouseMoved(final PInputEvent event) {
                    updateToolTip(event);
                }
    View Full Code Here

    Examples of org.piccolo2d.PNode.addChild()

                for (Vector2D vertex : hull.getVertices()) {
                    final PPath node = PPath.createEllipse(vertex.getX() - 1, vertex.getY() - 1, 2, 2);
                    node.addAttribute("tooltip", vertex);
                    node.setPaint(Color.red);
                    node.setStrokePaint(Color.red);
                    hullNode.addChild(node);
                }

                for (Segment line : hull.getLineSegments()) {
                    final PPath node = PPath.createLine(line.getStart().getX(), line.getStart().getY(),
                                                        line.getEnd().getX(), line.getEnd().getY());
    View Full Code Here

    Examples of org.platformlayer.ops.filesystem.ManagedDirectory.addChild()

        File keystoreFile = template.getKeystoreFile();

        if (template.shouldCreateSslKey()) {
          // TODO: Unify with additional keys?
          // But be careful.. this is normally a shared key across all instances
          ManagedKeystore httpsKey = configDir.addChild(ManagedKeystore.class);
          httpsKey.path = keystoreFile;
          httpsKey.tagWithPublicKeys = template.getModel();
          httpsKey.alias = ManagedKeystore.DEFAULT_WEBSERVER_ALIAS;
          httpsKey.key = template.findPublicSslKey();
        }
    View Full Code Here

    Examples of org.platformlayer.ops.instances.InstanceBuilder.addChild()

          addChild(vm);
        }

        {
          GerritInstall install = vm.addChild(GerritInstall.class);
        }

        // Bootstrap depends on configuration file
        vm.addChild(ManagedDirectory.build(template.getDataDir(), "700").setOwner(template.getUser())
            .setGroup(template.getGroup()));
    View Full Code Here

    Examples of org.platformlayer.ops.postgres.DatabaseConnection.addChild()

          // dbConnection.username = template.getAuthDatabaseUsername();
          // dbConnection.password = template.getAuthDatabasePassword();
        }

        {
          CreateDatabase db = dbConnection.addChild(CreateDatabase.class);
          db.databaseName = model.databaseName;
        }

        {
          CreateUser db = dbConnection.addChild(CreateUser.class);
    View Full Code Here

    Examples of org.platformlayer.service.cloud.direct.ops.CloudInstanceMapper.addChild()

          instance = injected(CloudInstanceMapper.class);
          instance.instance = OpsContext.get().getInstance(DirectInstance.class);
          addChild(instance);
        }

        instance.addChild(ManagedDirectory.build(getInstanceDir(), "700"));

        // TODO: If we're not going to assign an IPV4 redirect, we might not need this
        final Provider<AddressModel> address4;
        {
          NetworkAddressPoolAssignment provider = instance.addChild(NetworkAddressPoolAssignment.class);
    View Full Code Here

    Examples of org.projectforge.gantt.GanttTask.addChild()

                @Override
                void onSubmit()
                {
                  final GanttTaskImpl root = (GanttTaskImpl) ganttChartData.getRootObject();
                  final Integer nextId = root.getNextId();
                  ganttObject.addChild(new GanttTaskImpl(nextId).setVisible(true).setTitle(getString("untitled")));
                  final Set<Serializable> openNodes = getOpenNodes();
                  openNodes.add(ganttObject.getId());
                  refreshTreeTable();
                  setOpenNodes(openNodes);
                  form.getParentPage().refresh();
    View Full Code Here

    Examples of org.projectforge.gantt.GanttTaskImpl.addChild()

                  final GanttTask parent = root.findParent(clipboard.getId());
                  final TaskDO task = taskDao.getTaskTree().getTaskById((Integer) clipboard.getId());
                  parent.removeChild(clipboard);
                  if (clipboard == ganttObject) {
                    // Move to top level:
                    root.addChild(ganttObject);
                    final TaskDO rootTask = form.getData().getTask();
                    if (rootTask != null && task != null) {
                      task.setParentTask(rootTask);
                      taskDao.update(task);
                    }
    View Full Code Here

    Examples of org.richfaces.demo.iteration.model.tree.DataHolderTreeNodeImpl.addChild()

        private org.richfaces.model.TreeNode createClassicNode(TreeNode node) {
            TreeNodeImpl result = new DataHolderTreeNodeImpl(node.isLeaf(), ((SwingTreeNodeImpl<?>) node).getData());

            for (int i = 0; i < node.getChildCount(); i++) {
                result.addChild(i, createClassicNode(node.getChildAt(i)));
            }

            return result;
        }
    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.