Codota Logo
Parameter.setQName
Code IndexAdd Codota to your IDE (free)

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

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

  • Common ways to obtain Parameter
private void myMethod () {
Parameter p =
  • Codota Iconnew Parameter()
  • Codota IconVector vector;(Parameter) vector.get(index)
  • Codota IconIterator iterator;(Parameter) iterator.next()
  • Smart code suggestions by Codota
}
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

DefinedElement de = (DefinedElement) p.getType();
p.setQName(de.getQName());
p.setQName(p.getType().getRefType().getQName());
origin: org.apache.axis/com.springsource.org.apache.axis

DefinedElement de = (DefinedElement) p.getType();
p.setQName(de.getQName());
p.setQName(p.getType().getRefType().getQName());
origin: org.apache.axis/axis

DefinedElement de = (DefinedElement) p.getType();
p.setQName(de.getQName());
p.setQName(p.getType().getRefType().getQName());
origin: axis/axis

parameters.returnParam.setQName(
    parameters.returnParam.getType().getQName());
origin: axis/axis

param.setQName(qName);
param.setQName(qName);
origin: org.apache.axis/axis

parameters.returnParam.setQName(
    parameters.returnParam.getType().getQName());
origin: org.apache.axis/com.springsource.org.apache.axis

parameters.returnParam.setQName(
    parameters.returnParam.getType().getQName());
origin: org.apache.axis/axis

param.setQName(qName);
param.setQName(qName);
origin: org.apache.axis/com.springsource.org.apache.axis

param.setQName(qName);
param.setQName(qName);
origin: org.apache.axis/axis

Parameter p = new Parameter();
p.setQName(elem.getQName());
origin: org.apache.axis/com.springsource.org.apache.axis

Parameter p = new Parameter();
p.setQName(elem.getQName());
origin: axis/axis

Parameter p = new Parameter();
p.setQName(elem.getQName());
org.apache.axis.wsdl.symbolTableParametersetQName

Javadoc

Set the QName of the parameter.

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,
  • setMode,
  • setName,
  • setNillable,
  • setOmittable,
  • setOutHeader,
  • setType

Popular in Java

  • Running tasks concurrently on multiple threads
  • getSharedPreferences (Context)
  • setRequestProperty (URLConnection)
    Sets the general request property. If a property with the key already exists, overwrite its value wi
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • PrintStream (java.io)
    A PrintStream adds functionality to another output stream, namely the ability to print representatio
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now