Examples of namespace()


Examples of com.sun.xml.bind.v2.schemagen.xmlschema.Any.namespace()

                children.add(new Tree.Term() {
                    protected void write(ContentModelContainer parent, boolean isOptional, boolean repeated) {
                        Any any = parent.any();
                        final String pcmode = getProcessContentsModeName(wc);
                        if( pcmode != null ) any.processContents(pcmode);
                        any.namespace("##other");
                        writeOccurs(any,isOptional,repeated);
                    }
                });
            }
View Full Code Here

Examples of com.sun.xml.bind.v2.schemagen.xmlschema.Import.namespace()

                // refer to other schemas
                for( Namespace n : depends ) {
                    Import imp = schema._import();
                    if(n.uri.length()!=0)
                        imp.namespace(n.uri);
                    String refSystemId = systemIds.get(n);
                    if(refSystemId!=null && !refSystemId.equals("")) {
                        // "" means implied. null if the SchemaOutputResolver said "don't generate!"
                        imp.schemaLocation(relativize(refSystemId,result.getSystemId()));
                    }
View Full Code Here

Examples of com.sun.xml.internal.bind.v2.schemagen.xmlschema.Any.namespace()

                children.add(new Tree.Term() {
                    protected void write(ContentModelContainer parent, boolean isOptional, boolean repeated) {
                        Any any = parent.any();
                        final String pcmode = getProcessContentsModeName(wc);
                        if( pcmode != null ) any.processContents(pcmode);
                        any.namespace("##other");
                        writeOccurs(any,isOptional,repeated);
                    }
                });
            }
View Full Code Here

Examples of com.sun.xml.internal.bind.v2.schemagen.xmlschema.Import.namespace()

                // refer to other schemas
                for( Namespace n : depends ) {
                    Import imp = schema._import();
                    if(n.uri.length()!=0)
                        imp.namespace(n.uri);
                    String refSystemId = systemIds.get(n);
                    if(refSystemId!=null && !refSystemId.equals("")) {
                        // "" means implied. null if the SchemaOutputResolver said "don't generate!"
                        imp.schemaLocation(relativize(refSystemId,result.getSystemId()));
                    }
View Full Code Here

Examples of com.sun.xml.internal.ws.wsdl.writer.document.soap.BodyType.namespace()

                    body.parts("");
                }
                generateSOAPHeaders(input, headerParams, requestMessage);
            }
            if (isRpc) {
                body.namespace(method.getRequestParameters().iterator().next().getName().getNamespaceURI());
            }
        } else {
            // TODO localize this
            throw new WebServiceException("encoded use is not supported");
        }
View Full Code Here

Examples of com.sun.xml.ws.wsdl.writer.document.soap.BodyType.namespace()

                    body.parts("");
                }
                generateSOAPHeaders(input, headerParams, requestMessage);
            }
            if (isRpc) {
                body.namespace(method.getRequestParameters().iterator().next().getName().getNamespaceURI());
            }
        } else {
            // TODO localize this
            throw new WebServiceException("encoded use is not supported");
        }
View Full Code Here

Examples of com.tinkerpop.rexster.extension.ExtensionNaming.namespace()

                    currentExtensionName = extensionNaming.name();
                }

                // naming annotation is defaulted to "g" anyway but checking anyway to make sure
                // no one tries to pull any funny business.
                if (extensionNaming.namespace() != null && !extensionNaming.namespace().isEmpty()) {
                    currentExtensionNamespace = extensionNaming.namespace();
                }
            }

            final String currentNamespaceAndName = makeExtensionName(currentExtensionNamespace, currentExtensionName);
View Full Code Here

Examples of de.zalando.sprocwrapper.SProcService.namespace()

            } catch (final InstantiationException | IllegalAccessException ex) {
                LOG.error("ShardKey strategy for service can not be instantiated", ex);
                return null;
            }

            if (!"".equals(serviceAnnotation.namespace())) {
                prefix = serviceAnnotation.namespace() + "_";
            }
        }

        for (final Method method : methods) {
View Full Code Here

Examples of javax.faces.component.FacesComponent.namespace()

        if (null == facesComponentsByNamespace) {
            facesComponentsByNamespace = new HashMap<String, List<FacesComponentUsage>>();
        }

        List<FacesComponentUsage> componentsInNamespace = null;
        final String namespace = facesComponent.namespace();
       
        if (!facesComponentsByNamespace.containsKey(facesComponent.namespace())) {
            componentsInNamespace = new ArrayList<FacesComponentUsage>();
            facesComponentsByNamespace.put(namespace, componentsInNamespace);
        } else {
View Full Code Here

Examples of javax.xml.bind.annotation.XmlElement.namespace()

                XmlElement el = (XmlElement)ann;
                av0 = fv.visitAnnotation("Ljavax/xml/bind/annotation/XmlElement;", true);
                av0.visit("name", el.name());
                av0.visit("nillable", el.nillable());
                av0.visit("requried", el.required());
                av0.visit("namespace", el.namespace());
                av0.visit("defaultValue", el.defaultValue());
                av0.visit("type", el.type());
                av0.visitEnd();
               
            }
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.