Tabnine Logo
Parameter.setMode
Code IndexAdd Tabnine to your IDE (free)

How to use
setMode
method
in
org.apache.axis.wsdl.symbolTable.Parameter

Best Java code snippets using org.apache.axis.wsdl.symbolTable.Parameter.setMode (Showing top 9 results out of 315)

origin: axis/axis

/**
 * Add an output parameter to the parameters object.
 *
 * @param outputs
 * @param outdex
 * @param parameters
 * @param trim
 */
private void addOutParm(Vector outputs, int outdex, Parameters parameters,
            boolean trim) {
  Parameter p = (Parameter) outputs.get(outdex);
  // If this is an element, we want the XML to reflect the element name
  // not the part name.  Same check is made in addInishParam above.
  if (p.getType() instanceof DefinedElement) {
    DefinedElement de = (DefinedElement) p.getType();
    p.setQName(de.getQName());
  }
  // If this is a collection we want the XML to reflect the type in
  // the collection, not foo[unbounded].
  // Same check is made in addInishParam above.
  if (p.getType() instanceof CollectionElement) {
    p.setQName(p.getType().getRefType().getQName());
  }
  if (trim) {
    outputs.remove(outdex);
  }
  p.setMode(Parameter.OUT);
  ++parameters.outputs;
  parameters.list.add(p);
}    // addOutParm
origin: org.apache.axis/axis

/**
 * Add an output parameter to the parameters object.
 *
 * @param outputs
 * @param outdex
 * @param parameters
 * @param trim
 */
private void addOutParm(Vector outputs, int outdex, Parameters parameters,
            boolean trim) {
  Parameter p = (Parameter) outputs.get(outdex);
  // If this is an element, we want the XML to reflect the element name
  // not the part name.  Same check is made in addInishParam above.
  if (p.getType() instanceof DefinedElement) {
    DefinedElement de = (DefinedElement) p.getType();
    p.setQName(de.getQName());
  }
  // If this is a collection we want the XML to reflect the type in
  // the collection, not foo[unbounded].
  // Same check is made in addInishParam above.
  if (p.getType() instanceof CollectionElement) {
    p.setQName(p.getType().getRefType().getQName());
  }
  if (trim) {
    outputs.remove(outdex);
  }
  p.setMode(Parameter.OUT);
  ++parameters.outputs;
  parameters.list.add(p);
}    // addOutParm
origin: org.apache.axis/com.springsource.org.apache.axis

/**
 * Add an output parameter to the parameters object.
 *
 * @param outputs
 * @param outdex
 * @param parameters
 * @param trim
 */
private void addOutParm(Vector outputs, int outdex, Parameters parameters,
            boolean trim) {
  Parameter p = (Parameter) outputs.get(outdex);
  // If this is an element, we want the XML to reflect the element name
  // not the part name.  Same check is made in addInishParam above.
  if (p.getType() instanceof DefinedElement) {
    DefinedElement de = (DefinedElement) p.getType();
    p.setQName(de.getQName());
  }
  // If this is a collection we want the XML to reflect the type in
  // the collection, not foo[unbounded].
  // Same check is made in addInishParam above.
  if (p.getType() instanceof CollectionElement) {
    p.setQName(p.getType().getRefType().getQName());
  }
  if (trim) {
    outputs.remove(outdex);
  }
  p.setMode(Parameter.OUT);
  ++parameters.outputs;
  parameters.list.add(p);
}    // addOutParm
origin: axis/axis

p.setMode(Parameter.INOUT);
origin: org.apache.axis/com.springsource.org.apache.axis

p.setMode(Parameter.INOUT);
origin: org.apache.axis/axis

p.setMode(Parameter.INOUT);
origin: axis/axis

parameters.returnParam = (Parameter) outputs.get(0);
parameters.returnParam.setMode(Parameter.OUT);
origin: org.apache.axis/com.springsource.org.apache.axis

parameters.returnParam = (Parameter) outputs.get(0);
parameters.returnParam.setMode(Parameter.OUT);
origin: org.apache.axis/axis

parameters.returnParam = (Parameter) outputs.get(0);
parameters.returnParam.setMode(Parameter.OUT);
org.apache.axis.wsdl.symbolTableParametersetMode

Javadoc

Set the mode (IN, INOUT, OUT) of the parameter. If the input to this method is not one of IN, INOUT, OUT, then the value remains unchanged.

Popular methods of Parameter

  • getMode
    Get the mode (IN, INOUT, OUT) of the parameter.
  • getName
    Get the name of this parameter. This call is equivalent to getQName().getLocalPart().
  • getType
    Get the TypeEntry of the parameter.
  • getQName
    Get the fully qualified name of this parameter.
  • isInHeader
    Is this parameter in the input message header?
  • isOutHeader
    Is this parameter in the output message header?
  • <init>
  • getMIMEInfo
    Get the MIME type of the parameter.
  • isNillable
    Indicates whether this parameter is nillable or not.
  • isOmittable
  • setInHeader
    Set the inHeader flag for this parameter.
  • setMIMEInfo
    Set the MIME type of the parameter.
  • setInHeader,
  • setMIMEInfo,
  • setName,
  • setNillable,
  • setOmittable,
  • setOutHeader,
  • setQName,
  • setType

Popular in Java

  • Reactive rest calls using spring rest template
  • putExtra (Intent)
  • setRequestProperty (URLConnection)
  • getApplicationContext (Context)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • Notification (javax.management)
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now