Uses of Class
com.sun.tools.ws.processor.model.Parameter

Packages that use Parameter
com.sun.tools.ws.processor.generator   
com.sun.tools.ws.processor.model   
com.sun.tools.ws.processor.model.java   
com.sun.tools.ws.processor.modeler.wsdl   
com.sun.tools.ws.processor.util   
 

Uses of Parameter in com.sun.tools.ws.processor.generator
 

Methods in com.sun.tools.ws.processor.generator with parameters of type Parameter
 void GeneratorBase.visit(Parameter param)
           
 

Uses of Parameter in com.sun.tools.ws.processor.model
 

Methods in com.sun.tools.ws.processor.model that return Parameter
 Parameter Parameter.getLinkedParameter()
           
 Parameter Message.getParameterByName(String name)
           
 

Methods in com.sun.tools.ws.processor.model that return types with arguments of type Parameter
 Iterator<Parameter> Message.getParameters()
           
 List<Parameter> Message.getParametersList()
           
 

Methods in com.sun.tools.ws.processor.model with parameters of type Parameter
 void Message.addParameter(Parameter p)
           
 void Parameter.setLinkedParameter(Parameter p)
           
protected  void ExtendedModelVisitor.visit(Parameter parameter)
           
 void ModelVisitor.visit(Parameter parameter)
           
 

Method parameters in com.sun.tools.ws.processor.model with type arguments of type Parameter
 void Message.setParametersList(List<Parameter> l)
           
 

Uses of Parameter in com.sun.tools.ws.processor.model.java
 

Methods in com.sun.tools.ws.processor.model.java that return Parameter
 Parameter JavaParameter.getParameter()
           
 

Methods in com.sun.tools.ws.processor.model.java with parameters of type Parameter
 void JavaParameter.setParameter(Parameter p)
           
 

Constructors in com.sun.tools.ws.processor.model.java with parameters of type Parameter
JavaParameter(String name, JavaType type, Parameter parameter)
           
JavaParameter(String name, JavaType type, Parameter parameter, boolean holder)
           
 

Uses of Parameter in com.sun.tools.ws.processor.modeler.wsdl
 

Methods in com.sun.tools.ws.processor.modeler.wsdl that return Parameter
static Parameter ModelerUtils.createParameter(String partName, AbstractType jaxbType, Block block)
          Called for non-wrapper style operations.
static Parameter ModelerUtils.getParameter(String paramName, List<Parameter> parameters)
          Get Parameter from the list of parameters.
 

Methods in com.sun.tools.ws.processor.modeler.wsdl that return types with arguments of type Parameter
static List<Parameter> ModelerUtils.createRpcLitParameters(Message message, Block block, S2JJAXBModel jaxbModel, ErrorReceiverFilter errReceiver)
           
static List<Parameter> ModelerUtils.createUnwrappedParameters(JAXBType jaxbType, Block block)
          This method uses JAXBStructured type (wrapper style operations) and unwraps it to create list of parameters.
 

Method parameters in com.sun.tools.ws.processor.modeler.wsdl with type arguments of type Parameter
static Parameter ModelerUtils.getParameter(String paramName, List<Parameter> parameters)
          Get Parameter from the list of parameters.
 

Uses of Parameter in com.sun.tools.ws.processor.util
 

Methods in com.sun.tools.ws.processor.util with parameters of type Parameter
protected  void ClassNameCollector.visit(Parameter parameter)