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.apache.axis2.soap.SOAPHeaderBlock.addChild()

            SOAPHeader header = omfactory.createSOAPHeader(reqEnv);
            OMNamespace hns = reqEnv.declareNamespace("http://soapinterop.org/echoheader/", "hns"); //xmlns:m0="http://soapinterop.org/echoheader/
            SOAPHeaderBlock block1 = header.addHeaderBlock("echoMeStringRequest", hns);
            block1.addAttribute("xsi:type", "xsd:string", null);
            block1.addChild(omfactory.createText("string"));
            // header.addChild(headerChild);
            header.addChild(block1);

            SOAPHeaderBlock block2 = header.addHeaderBlock("echoMeStructRequest", hns);
            block2.addAttribute("xsi:type", "s:SOAPStruct", null);
    View Full Code Here

    Examples of org.apache.catalina.Container.addChild()

                for (String listener : applicationListeners) {
                    anotherCtxObj.addApplicationListener(listener);
                }
            }

            host.addChild(anotherCtxObj);
        }

        public void removeContext(TomcatContext ctx) {
            Context context = ctx.getContext();
    View Full Code Here

    Examples of org.apache.catalina.Context.addChild()

            Wrapper w = c.createWrapper();
            w.addMapping("/*");
            w.setServletClass(TomcatAtmosphereServlet.class.getName());
            w.setLoadOnStartup(0);

            c.addChild(w);
            host.addChild(c);

            Connector connector = embedded.createConnector("127.0.0.1",port,Http11NioProtocol.class.getName());
            connector.setContainer(host);
            embedded.addEngine(engine);
    View Full Code Here

    Examples of org.apache.catalina.Engine.addChild()

            Engine engine = embedded.createEngine();
            engine.setDefaultHost("127.0.0.1");

            Host host = embedded.createHost("127.0.0.1", path);
            engine.addChild(host);

            Context c = embedded.createContext("/", path);
            c.setReloadable(false);
            Wrapper w = c.createWrapper();
            w.addMapping("/*");
     
    View Full Code Here

    Examples of org.apache.catalina.Host.addChild()

            w.addMapping("/*");
            w.setServletClass(TomcatAtmosphereServlet.class.getName());
            w.setLoadOnStartup(0);

            c.addChild(w);
            host.addChild(c);

            Connector connector = embedded.createConnector("127.0.0.1",port,Http11NioProtocol.class.getName());
            connector.setContainer(host);
            embedded.addEngine(engine);
            embedded.addConnector(connector);
    View Full Code Here

    Examples of org.apache.catalina.core.ContainerBase.addChild()

            ContainerBase container = null;
            try {
                container = (ContainerBase)getManagedResource();
                oldValue = container.getStartChildren();
                container.setStartChildren(false);
                container.addChild(contained);
                contained.init();
            } catch (InstanceNotFoundException e) {
                throw new MBeanException(e);
            } catch (RuntimeOperationsException e) {
                throw new MBeanException(e);
    View Full Code Here

    Examples of org.apache.catalina.core.StandardContext.addChild()

            setWsContainer(context, wrapper, httpListener);
            wrapper.addMapping("/*");


            // add add servlet to context
            context.addChild(wrapper);
            context.addServletMapping("/*", "webservice");

            // add context to host
            host.addChild(context);
            webserviceContexts.put(path, context);
    View Full Code Here

    Examples of org.apache.catalina.core.StandardEngine.addChild()

            engines.put(engine.getName(), engine);

            // create a default virtual host; others will be created as needed
            Host host = createHost(engine, hostName);
            hosts.put(engineName + "._DEFAULT", host);
            engine.addChild(host);

            // configure clustering
            List<ContainerConfig.Container.Property> clusterProps = engineConfig.getPropertiesWithValue("cluster");
            if (clusterProps != null && clusterProps.size() > 1) {
                throw new ContainerException("Only one cluster configuration allowed per engine");
    View Full Code Here

    Examples of org.apache.catalina.core.StandardHost.addChild()

                // context.setParentClassLoader(tccl.getParent());
                context.setDocBase("");
                context.setPath("");
                ContextConfig config = new ContextConfig();
                ((Lifecycle)context).addLifecycleListener(config);
                host.addChild(context);

                // Install an HTTP connector
                Connector connector;
                try {
                    engine.start();
    View Full Code Here

    Examples of org.apache.catalina.util.xml.XmlMapper.addChild()

                           mapper.methodParam(1));

            mapper.addRule("web-app/filter-mapping",
                      mapper.objectCreate("org.apache.catalina.deploy.FilterMap"));
            mapper.addRule("web-app/filter-mapping",
                           mapper.addChild("addFilterMap",
                                          "org.apache.catalina.deploy.FilterMap"));
            mapper.addRule("web-app/filter-mapping/filter-name",
                           mapper.methodSetter("setFilterName", 0));
            mapper.addRule("web-app/filter-mapping/servlet-name",
                           mapper.methodSetter("setServletName", 0));
    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.