Examples of use()


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

        TypedXmlWriter input = operation.input();
        extension.addBindingOperationInputExtension(input, method);
        BodyType body = input._element(Body.class);
        boolean isRpc = soapBinding.getStyle().equals(Style.RPC);
        if (soapBinding.getUse() == Use.LITERAL) {
            body.use(LITERAL);
            if (headerParams.size() > 0) {
                if (bodyParams.size() > 0) {
                    ParameterImpl param = bodyParams.iterator().next();
                    if (isRpc) {
                        StringBuilder parts = new StringBuilder();
View Full Code Here

Examples of com.sun.xml.ws.wsdl.writer.document.soap.Header.use()

        for (ParameterImpl headerParam : parameters) {
            Header header = writer._element(Header.class);
            header.message(message);
            header.part(headerParam.getPartName());
            header.use(LITERAL);
        }
    }

    protected void generateSOAP12Headers(TypedXmlWriter writer, List<ParameterImpl> parameters, QName message) {
View Full Code Here

Examples of com.sun.xml.ws.wsdl.writer.document.soap.SOAPFault.use()

        }
        for (CheckedExceptionImpl exception : method.getCheckedExceptions()) {
            Fault fault = operation.fault().name(exception.getMessageName());
            extension.addBindingOperationFaultExtension(fault, method, exception);
            SOAPFault soapFault = fault._element(SOAPFault.class).name(exception.getMessageName());
            soapFault.use(LITERAL);
        }
    }

    protected void generateSOAP12BindingOperation(JavaMethodImpl method, Binding binding) {
        BindingOperationType operation = binding.operation().name(method.getOperationName());
View Full Code Here

Examples of com.thecrouchmode.graphics.Shader.use()

//              1.0f);
         
          light.pos = new Vector4f(trans, 1.0f);

         
          shader.use();
         
          shader.setUniform("lightPos", light.pos.xyz());
          shader.setUniform("lightInt", light.intensity);
          shader.setUniform("flip", 0);
         
View Full Code Here

Examples of com.xmlcalabash.core.XProcRuntime.use()

        if (XProcConstants.p_pipeline.equals(piperoot.getNodeName())
                || XProcConstants.p_declare_step.equals(piperoot.getNodeName())) {
            if (stepName != null) {
                throw new XProcException(step.getNode(), "Step option can only be used when loading a p:library");
            }
            pipeline = innerRuntime.use(pipedoc);
        } else if (XProcConstants.p_library.equals(piperoot.getNodeName())) {
            XLibrary library = innerRuntime.useLibrary(piperoot);
            if (stepName == null) {
                pipeline = library.getFirstPipeline();
            } else {
View Full Code Here

Examples of giggler.Runtime.use()

            boolean addToClassLoader = true;
           
            if (file.equals(pluginJarFile))
                addToClassLoader = false;
            else if (runtime != null)
                addToClassLoader = runtime.use(file.getName());
           
            if (addToClassLoader) {
               
                try {
                   
View Full Code Here

Examples of items.Food.use()

        World.getMainScreen().displayOnField("You have a broken tongue on your oxen!");
      }
    }
    World.nextDay();
   
    f.use();
    //w.use();
   
    //System.out.println(this+" print from wagon turn");
  }
  public void setTotalDeath(){
View Full Code Here

Examples of jadx.core.dex.instructions.args.SSAVar.use()

            SSAVar var = vars[regNum];
            if (var == null) {
              var = mth.makeNewSVar(regNum, vers, null);
              vars[regNum] = var;
            }
            var.use(reg);
          }
        }
      }
      RegisterArg result = insn.getResult();
      if (result != null) {
View Full Code Here

Examples of javax.jws.soap.SOAPBinding.use()

            else if (binding.style() == SOAPBinding.Style.RPC)
            {
                annot.setStyle(SOAPBindingAnnotation.STYLE_RPC);
            }

            if (binding.use() == SOAPBinding.Use.ENCODED)
            {
                annot.setUse(SOAPBindingAnnotation.USE_ENCODED);
            }
            else if (binding.use() == SOAPBinding.Use.LITERAL)
            {
View Full Code Here

Examples of javax.jws.soap.SOAPBinding.use()

            if (binding.use() == SOAPBinding.Use.ENCODED)
            {
                annot.setUse(SOAPBindingAnnotation.USE_ENCODED);
            }
            else if (binding.use() == SOAPBinding.Use.LITERAL)
            {
                annot.setUse(SOAPBindingAnnotation.USE_LITERAL);
            }
        }
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.