Paquete | mx.utils |
Clase | public class XMLUtil |
Herencia | XMLUtil Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
XMLUtil.qnamesEqual()
method.
Propiedades públicas
Métodos públicos
Método | Definido por | ||
---|---|---|---|
[estática]
Creates XML out of the specified string, ignoring whitespace. | XMLUtil | ||
[estática]
Returns the XML value of an attribute matching the given QName
| XMLUtil | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
[estática]
Returns true if the two QName parameters have identical
uri and localName properties. | XMLUtil | ||
[estática]
Returns the concatenation of a Qname object's
uri and localName properties,
separated by a colon. | XMLUtil | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve la representación de cadena del objeto especificado. | Object | ||
Devuelve el valor simple del objeto especificado. | Object |
Información sobre métodos
createXMLDocument | () | método |
public static function createXMLDocument(str:String):XMLDocument
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | 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.
Parámetros
str:String — XML string.
|
XMLDocument — New XML object that ignored whitespace.
|
getAttributeByQName | () | método |
public static function getAttributeByQName(xml:XML, attrQName:QName):XMLList
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Returns the XML value of an attribute matching the given QName
Parámetros
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 | () | método |
public static function qnamesEqual(qname1:QName, qname2:QName):Boolean
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Returns true
if the two QName parameters have identical
uri
and localName
properties.
Parámetros
qname1:QName — First QName object.
| |
qname2:QName — Second QName object.
|
Boolean — true if the two QName parameters have identical
uri and localName properties.
|
qnameToString | () | método |
public static function qnameToString(qname:QName):String
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | 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.
Parámetros
qname:QName — QName object.
|
String — Concatenation of a Qname object's
uri and localName properties,
separated by a colon.
|
Tue Jun 12 2018, 02:12 PM Z