Pacchetto | mx.utils |
Classe | public class XMLUtil |
Ereditarietà | XMLUtil Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
XMLUtil.qnamesEqual()
method.
Proprietà pubbliche
Metodi pubblici
Metodo | Definito da | ||
---|---|---|---|
[statico]
Creates XML out of the specified string, ignoring whitespace. | XMLUtil | ||
[statico]
Returns the XML value of an attribute matching the given QName
| XMLUtil | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
[statico]
Returns true if the two QName parameters have identical
uri and localName properties. | XMLUtil | ||
[statico]
Returns the concatenation of a Qname object's
uri and localName properties,
separated by a colon. | XMLUtil | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
Descrizione dei metodi
createXMLDocument | () | metodo |
public static function createXMLDocument(str:String):XMLDocument
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Creates XML out of the specified string, ignoring whitespace.
This method is used to create objects defined in
<mx:XML>
tags and WebService requests,
although they, in turn, get the firstChild
of the structure.
Parametri
str:String — XML string.
|
XMLDocument — New XML object that ignored whitespace.
|
getAttributeByQName | () | metodo |
public static function getAttributeByQName(xml:XML, attrQName:QName):XMLList
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Returns the XML value of an attribute matching the given QName
Parametri
xml:XML — the XML object being inspected
| |
attrQName:QName — the QName of the attribute to find
|
XMLList — XMLList of matching attributes or an empty list if none are found.
|
qnamesEqual | () | metodo |
public static function qnamesEqual(qname1:QName, qname2:QName):Boolean
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Returns true
if the two QName parameters have identical
uri
and localName
properties.
Parametri
qname1:QName — First QName object.
| |
qname2:QName — Second QName object.
|
Boolean — true if the two QName parameters have identical
uri and localName properties.
|
qnameToString | () | metodo |
public static function qnameToString(qname:QName):String
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Returns the concatenation of a Qname object's
uri
and localName
properties,
separated by a colon.
If the object does not have a uri
property,
or the value of uri
is the empty string,
returns the localName
property.
Parametri
qname:QName — QName object.
|
String — Concatenation of a Qname object's
uri and localName properties,
separated by a colon.
|
Tue Jun 12 2018, 02:44 PM Z