element <tns:arg>
Namespace:
Type:
Content:
complex, 1 attribute, 19 elements
Defined:
locally at 3 locations in jpdl-4.4.xsd
XML Representation Summary
<tns:arg
    type
 = 
string
    >
   
Content: 
tns:null | tns:ref | tns:env-ref | tns:jndi | tns:list | tns:map | tns:set | tns:properties | tns:object | tns:string | tns:byte | tns:char | tns:double | tns:false | tns:float | tns:int | tns:long | tns:short | tns:true
</tns:arg>
Content model elements (19):
tns:byte (type anonymous),
tns:char (type anonymous),
tns:double (type anonymous),
tns:env-ref (type anyType),
tns:false (type anonymous),
tns:float (type anonymous),
tns:int (type anonymous),
tns:jndi (type anonymous),
tns:list (type anonymous),
tns:long (type anonymous),
tns:null (type anyType),
tns:properties (type anonymous),
tns:ref (type anonymous),
tns:set (type anonymous),
tns:short (type anonymous),
tns:string (type anonymous),
tns:true (type anonymous)
Included in content model of elements (9):
tns:constructor (type anonymous),
tns:custom (type extension of tns:wireObjectType),
tns:invoke (type anonymous),
tns:mail (type extension of tns:mailType),
tns:mail (type extension of tns:mailType),
Definition Locations
Annotations (1) (by all definition locations)
Location:
within complexType tns:wireObjectType [def]
Annotation:
The factory method arguments.
Attribute Detail
type
Type:
string, predefined
Use:
optional
Defined:
locally, within tns:argType complexType
Class name representing the method type. Optional, helps resolve the appropriate method in case of overloading.
XML Source (see within schema source)
<attribute name="type" type="string">
<annotation>
<documentation>
Class name representing the method type.
Optional, helps resolve the appropriate method in case of overloading.
</documentation>
</annotation>
</attribute>
Content Element Detail
tns:byte
Type:
anonymous, empty content
Defined:
8-bit signed integer.
XML Source (see within schema source)
<element name="byte">
<annotation>
<documentation>8-bit signed integer.</documentation>
</annotation>
<complexType>
<attribute name="name" type="string">
<annotation>
<documentation>
The name of the object. Optional, serves as an identifier
to refer to this object from other object descriptions.
Also used to fetch the object programmatically.
</documentation>
</annotation>
</attribute>
<attribute name="value" type="byte" use="required"/>
</complexType>
</element>

tns:char
Type:
anonymous, empty content
Defined:
16-bit Unicode character.
XML Source (see within schema source)
<element name="char">
<annotation>
<documentation>16-bit Unicode character.</documentation>
</annotation>
<complexType>
<attribute name="name" type="string">
<annotation>
<documentation>
The name of the object. Optional, serves as an identifier
to refer to this object from other object descriptions.
Also used to fetch the object programmatically.
</documentation>
</annotation>
</attribute>
<attribute name="value" use="required">
<simpleType>
<restriction base="string">
<maxLength value="1"/>
</restriction>
</simpleType>
</attribute>
</complexType>
</element>

tns:double
Type:
anonymous, empty content
Defined:
64-bit floating point number.
XML Source (see within schema source)
<element name="double">
<annotation>
<documentation>64-bit floating point number.</documentation>
</annotation>
<complexType>
<attribute name="name" type="string">
<annotation>
<documentation>
The name of the object. Optional, serves as an identifier
to refer to this object from other object descriptions.
Also used to fetch the object programmatically.
</documentation>
</annotation>
</attribute>
<attribute name="value" type="double" use="required"/>
</complexType>
</element>

tns:env-ref
Type:
anyType, any content
Defined:
The current environment.
XML Source (see within schema source)
<element name="env-ref">
<annotation>
<documentation>The current environment.</documentation>
</annotation>
</element>

tns:false
Type:
anonymous, empty content
Defined:
Boolean false value
XML Source (see within schema source)
<element name="false">
<annotation>
<documentation>Boolean false value</documentation>
</annotation>
<complexType>
<attribute name="name" type="string">
<annotation>
<documentation>
The name of the object. Optional, serves as an identifier
to refer to this object from other object descriptions.
Also used to fetch the object programmatically.
</documentation>
</annotation>
</attribute>
</complexType>
</element>

tns:float
Type:
anonymous, empty content
Defined:
32-bit floating point number.
XML Source (see within schema source)
<element name="float">
<annotation>
<documentation>32-bit floating point number.</documentation>
</annotation>
<complexType>
<attribute name="name" type="string">
<annotation>
<documentation>
The name of the object. Optional, serves as an identifier
to refer to this object from other object descriptions.
Also used to fetch the object programmatically.
</documentation>
</annotation>
</attribute>
<attribute name="value" type="float" use="required"/>
</complexType>
</element>

tns:int
Type:
anonymous, empty content
Defined:
32-bit signed integer.
XML Source (see within schema source)
<element name="int">
<annotation>
<documentation>32-bit signed integer.</documentation>
</annotation>
<complexType>
<attribute name="name" type="string">
<annotation>
<documentation>
The name of the object. Optional, serves as an identifier
to refer to this object from other object descriptions.
Also used to fetch the object programmatically.
</documentation>
</annotation>
</attribute>
<attribute name="value" type="int" use="required"/>
</complexType>
</element>

tns:jndi
Type:
anonymous, empty content
Defined:
JNDI lookup based off the initial context.
XML Source (see within schema source)
<element name="jndi">
<annotation>
<documentation>JNDI lookup based off the initial context.</documentation>
</annotation>
<complexType>
<attribute name="jndi-name" type="string" use="required"/>
</complexType>
</element>

tns:list
Type:
anonymous, complex content
Defined:
java.util.List instance.
XML Source (see within schema source)
<element name="list">
<annotation>
<documentation>java.util.List instance.</documentation>
</annotation>
<complexType>
<choice maxOccurs="unbounded" minOccurs="0">
<group ref="tns:wireObjectGroup"/>
</choice>
<attribute name="name" type="string">
<annotation>
<documentation>
The name of the object. Optional, serves as an identifier
to refer to this object from other object descriptions.
Also used to fetch the object programmatically.
</documentation>
</annotation>
</attribute>
<attribute default="java.util.ArrayList" name="class" type="string">
<annotation>
<documentation>List implementation class.</documentation>
</annotation>
</attribute>
<attribute default="false" name="synchronized" type="tns:booleanValueType">
<annotation>
<documentation>
Indicates if this collection should be synchronized
with Collections.synchronizedList()
</documentation>
</annotation>
</attribute>
</complexType>
</element>

tns:long
Type:
anonymous, empty content
Defined:
64-bit signed integer.
XML Source (see within schema source)
<element name="long">
<annotation>
<documentation>64-bit signed integer.</documentation>
</annotation>
<complexType>
<attribute name="name" type="string">
<annotation>
<documentation>
The name of the object. Optional, serves as an identifier
to refer to this object from other object descriptions.
Also used to fetch the object programmatically.
</documentation>
</annotation>
</attribute>
<attribute name="value" type="long" use="required"/>
</complexType>
</element>

tns:map
Type:
tns:mapType, complex content
Defined:
XML Source (see within schema source)
<element name="map" type="tns:mapType"/>

tns:null
Type:
anyType, any content
Defined:
The null value.
XML Source (see within schema source)
<element name="null">
<annotation>
<documentation>The null value.</documentation>
</annotation>
</element>

tns:object
Type:
tns:wireObjectType, complex content
Defined:
XML Source (see within schema source)
<element name="object" type="tns:wireObjectType"/>

tns:properties
Type:
anonymous, complex content
Defined:
java.util.Properties instance.
XML Source (see within schema source)
<element name="properties">
<annotation>
<documentation>java.util.Properties instance.</documentation>
</annotation>
<complexType>
<choice maxOccurs="unbounded" minOccurs="0">
<element name="property">
<complexType>
<attribute name="name" type="string" use="required"/>
<attribute name="value" type="string" use="required"/>
</complexType>
</element>
</choice>
<attribute name="name" type="string">
<annotation>
<documentation>
The name of the object. Optional, serves as an identifier
to refer to this object from other object descriptions.
Also used to fetch the object programmatically.
</documentation>
</annotation>
</attribute>
<attribute name="file" type="string">
<annotation>
<documentation>File in the file system.</documentation>
</annotation>
</attribute>
<attribute name="resource" type="string">
<annotation>
<documentation>Resource in the classpath.</documentation>
</annotation>
</attribute>
<attribute name="url" type="string">
<annotation>
<documentation>Resource in the web.</documentation>
</annotation>
</attribute>
<attribute name="is-xml" type="tns:booleanValueType">
<annotation>
<documentation>
tells whether the resource referenced by
attributes 'file', 'resource' or 'url' is XML. The default is the
plain properties format, where a space or '=' separates the key
from the value in each line.
</documentation>
</annotation>
</attribute>
</complexType>
</element>

tns:ref
Type:
anonymous, empty content
Defined:
Reference to an object in the current environment.
XML Source (see within schema source)
<element name="ref">
<annotation>
<documentation>
Reference to an object in the current environment.
</documentation>
</annotation>
<complexType>
<attribute name="object" type="string" use="required">
<annotation>
<documentation>The name of the referred object.</documentation>
</annotation>
</attribute>
</complexType>
</element>

tns:set
Type:
anonymous, complex content
Defined:
java.util.Set instance.
XML Source (see within schema source)
<element name="set">
<annotation>
<documentation>java.util.Set instance.</documentation>
</annotation>
<complexType>
<choice maxOccurs="unbounded" minOccurs="0">
<group ref="tns:wireObjectGroup"/>
</choice>
<attribute name="name" type="string">
<annotation>
<documentation>
The name of the object. Optional, serves as an identifier
to refer to this object from other object descriptions.
Also used to fetch the object programmatically.
</documentation>
</annotation>
</attribute>
<attribute default="java.util.HashList" name="class" type="string">
<annotation>
<documentation>Set implementation class.</documentation>
</annotation>
</attribute>
<attribute default="false" name="synchronized" type="tns:booleanValueType">
<annotation>
<documentation>
Indicates if this collection should be synchronized
with Collections.synchronizedSet()
</documentation>
</annotation>
</attribute>
</complexType>
</element>

tns:short
Type:
anonymous, empty content
Defined:
16-bit signed integer.
XML Source (see within schema source)
<element name="short">
<annotation>
<documentation>16-bit signed integer.</documentation>
</annotation>
<complexType>
<attribute name="name" type="string">
<annotation>
<documentation>
The name of the object. Optional, serves as an identifier
to refer to this object from other object descriptions.
Also used to fetch the object programmatically.
</documentation>
</annotation>
</attribute>
<attribute name="value" type="short" use="required"/>
</complexType>
</element>

tns:string
Type:
anonymous, empty content
Defined:
XML Source (see within schema source)
<element name="string">
<complexType>
<attribute name="name" type="string">
<annotation>
<documentation>
The name of the object. Optional, serves as an identifier
to refer to this object from other object descriptions.
Also used to fetch the object programmatically.
</documentation>
</annotation>
</attribute>
<attribute name="value"/>
</complexType>
</element>

tns:true
Type:
anonymous, empty content
Defined:
Boolean true value.
XML Source (see within schema source)
<element name="true">
<annotation>
<documentation>Boolean true value.</documentation>
</annotation>
<complexType>
<attribute name="name" type="string">
<annotation>
<documentation>
The name of the object. Optional, serves as an identifier
to refer to this object from other object descriptions.
Also used to fetch the object programmatically.
</documentation>
</annotation>
</attribute>
</complexType>
</element>

This XML schema documentation has been generated with DocFlex/XML RE 1.7.2 using DocFlex/XML XSDDoc 2.1.0 template set.
DocFlex/XML RE is a reduced edition of DocFlex/XML, which is a tool for programming and running highly sophisticated documentation and reports generators by the data obtained from any kind of XML files. The actual doc-generators are implemented in the form of special templates that are designed visually using a high quality Template Designer GUI basing on the XML schema (or DTD) files describing the data source XML.
DocFlex/XML XSDDoc is a commercial template application of DocFlex/XML that implements a high-end XML Schema documentation generator with simultaneous support of framed multi-file HTML, single-file HTML and RTF output formats. (More formats are planned in the future).
A commercial license for "DocFlex/XML XSDDoc" will allow you:
  • To configure the generated documentation so much as you want. Thanks to our template technology, it was possible to support more than 300 template parameters (working the same as "options" of an ordinary doc-gen), which will give you an unprecedented control over the generated content!
  • To use certain features disabled in the free mode (such as the full documenting of substitution groups).
  • To enable/disable documenting of the initial, imported, included and redefined XML schemas selectively.
  • To document local element components both globally and locally (similar to attributes).
  • To enable/disable reproducing of namespace prefixes.
  • To format your annotations with XHTML tags and reproduce that formatting both in HTML and RTF output.
  • To insert images in your annotations using XHTML <img> tags (supported both in HTML and RTF output).
  • To use PlainDoc.tpl main template to generate all the XML schema documentation in the form of a single HTML file.
  • To use the same template to generate the incredible quality RTF documentation.
  • To document only selected XML schema components specified by name.
  • To remove this very advertisement text
Once having only such a license, you will be able to run the fully-featured XML schema documentation generator both with DocFlex/XML SDK and with DocFlex/XML RE, which is a reduced free edition containing only the template interpretor / output generator. No other licenses will be required!
But this is not all. In addition to it, a commercial license for DocFlex/XML SDK will allow you to modify the XSDDoc templates themselves as much as you want. You will be able to achieve whatever was impossible to do with the template parameters only. And, of course, you could develop any template applications by your own!
Please note: By purchasing a license for this software, you not only acquire a useful tool, you will also make an important investment in its future development, the result of which you could enjoy later by yourself. Every single your purchase matters and makes a difference for us!
To buy a license, please follow this link: http://www.filigris.com/shop/