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 com.anthonyeden.lib.config.MutableConfiguration.addChild()

        List areas = am.findBGAreasOfBGContext(context);
        for (Iterator iter = areas.iterator(); iter.hasNext();) {
          BGArea area = (BGArea) iter.next();
          MutableConfiguration newArea = confAreas.addChild(EXPORT_KEY_AREA);
          newArea.addAttribute(EXPORT_ATTR_NAME, area.getName());
          newArea.addChild(EXPORT_KEY_DESCRIPTION, area.getDescription());
        }

        // TODO fg: export group rights

        // export groups
    View Full Code Here

    Examples of com.bazaarvoice.jless.ast.node.InternalNode.addChild()

    @Test
    public class NodeTest {

        public void testChildIterators() {
            InternalNode p = new PlaceholderNode();
            p.addChild(new SimpleNode("c1"));
            p.addChild(new SimpleNode("c2"));
            p.addChild(new SimpleNode("c3"));
            p.addChild(new SimpleNode("c4"));

            RandomAccessListIterator i1 = p.pushChildIterator();
    View Full Code Here

    Examples of com.bazaarvoice.jless.ast.node.PlaceholderNode.addChild()

    @Test
    public class NodeTest {

        public void testChildIterators() {
            InternalNode p = new PlaceholderNode();
            p.addChild(new SimpleNode("c1"));
            p.addChild(new SimpleNode("c2"));
            p.addChild(new SimpleNode("c3"));
            p.addChild(new SimpleNode("c4"));

            RandomAccessListIterator i1 = p.pushChildIterator();
    View Full Code Here

    Examples of com.bazaarvoice.jless.ast.node.RuleSetNode.addChild()

                while (!_propertyGroups.empty()) {
                    PropertyGroup group = _propertyGroups.pop();

                    // Construct a simple rule set using the parent's selector
                    RuleSetNode propertyRuleSet = new RuleSetNode();
                    propertyRuleSet.addChild(NodeTreeUtils.filterLineBreaks(_parentSelectorGroup.clone()));

                    // Move all the properties into this new rule set
                    List<Node> propertyNodes = new ArrayList<Node>(_parentScope.getChildren().subList(group.getStart(), group.getEnd() + 1));
                    propertyRuleSet.addChild(new ScopeNode(propertyNodes));
    View Full Code Here

    Examples of com.bazaarvoice.jless.ast.node.SelectorNode.addChild()

                    public boolean exit(SelectorNode parentSelector) {
                        SelectorNode parentSelectorClone = parentSelector.clone();

                        // Add the current selector from the nested rule set to the cloned selector node from the parent.
                        // SelectorNode listens for additions of other SelectorNodes, and will absorb its children properly.
                        parentSelectorClone.addChild(selector.clone());

                        // Add the new selector to the selector group
                        selectorGroupIterator.add(parentSelectorClone);
                        return true;
                    }
    View Full Code Here

    Examples of com.bleujin.framework.db.bean.shaping.IsParent.addChild()

            final PropertyDescriptor[] childProps = super.propertyDescriptors(child);
            final int[] childColumnToProperty = super.mapColumnsToProperties(rmeta, childProps);

            do {
                IsParent currentParent = this.getParent(rs, parent, parentProps, parentColumnToProperty, cols, rmeta);
                currentParent.addChild(this.getChild(rs, child, childProps, childColumnToProperty, cols, rmeta));
            }
            while (rs.next());

            Iterator iterator = hashParent.values().iterator();
    View Full Code Here

    Examples of com.calclab.emite.base.xml.XMLPacket.addChild()

          final IQ iq = new IQ(IQ.Type.set);
          iq.setTo(host);
          iq.getXML().setAttribute("xml:lang", "en");
          final XMLPacket queryPacket = iq.addQuery(XmppNamespaces.SEARCH);
          for (final XMLPacket child : queryChilds) {
            queryPacket.addChild(child);
          }

          session.sendIQ("search", iq, callback);
        } else
          throw new RuntimeException(SHOULD_BE_CONNECTED);
    View Full Code Here

    Examples of com.calclab.emite.core.client.xmpp.stanzas.IQ.addChild()

        }

        public void bindResource(final String resource) {
      final IQ iq = new IQ(IQ.Type.set);
      iq.setId("bind-resource");
      iq.addChild("bind", "urn:ietf:params:xml:ns:xmpp-bind").addChild("resource", null).setText(resource);

      connection.send(iq);
        }

        public void onBinded(final Listener<XmppURI> listener) {
    View Full Code Here

    Examples of com.calclab.emite.core.stanzas.IQ.addChild()

    public class XmppRosterHelper {
      public static void setRosterItems(final XmppSessionTester session, final RosterItem... items) {
        session.setStatus(SessionStatus.loggedIn);
        final IQ iq = new IQ(IQ.Type.result);
        final XMLPacket query = iq.addChild("query", "jabber:iq:roster");
        for (final RosterItem item : items) {
          item.addStanzaTo(query);
        }
        session.answerSuccess(iq);
      }
    View Full Code Here

    Examples of com.cardence.lawshelf.html.MetaNode.addChild()

            if (priorNode == null) {
              // add to toplevel list
              this.toplevelList.add(thisNode);
            } else {
              // add to prior node as child
              priorNode.addChild(thisNode);
            }
          }
        }
      }
    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.