X-Index
A B C D E F G H I J K L M N O P Q R S T U V W X _

X

XMLAttribute - class com.ejie.r01f.xmlbuilder.XMLAttribute.
XMLAttribute.java Created on 17 de enero de 2002, 21:48
XMLAttribute() - Constructor for class com.ejie.r01f.xmlbuilder.XMLAttribute
Creates new XMLAttribute
XMLAttribute(String, String) - Constructor for class com.ejie.r01f.xmlbuilder.XMLAttribute
 
XMLDataIslandsInHTMLParser - class com.ejie.r01f.io.filters.XMLDataIslandsInHTMLParser.
Clase que parsea un documento HTML y obtiene DATA ISLANDS embebidos en el propio documento Ejemplo de HTML con dataIslands:
XMLDataIslandsInHTMLParser() - Constructor for class com.ejie.r01f.io.filters.XMLDataIslandsInHTMLParser
Constructor vacío
XMLLiterals - class com.ejie.r01f.xmlproperties.XMLLiterals.
Maneja los textos del sistema Los textos se definen en ficheros xml con cualquier estructura, pero con la restriccion de que han de empezar por el tag 'localeText' y de tener en al final de cada estructura los valores indexados por idioma Ejemplo: [Cualquier estructura de XML] Texto en castellano Texto en euskera Los textos se consultan utilizando sentencias XPath desde localeText Lo normal es inicializar un XMLLiterals en base a un idioma y luego utilizarlo: XMLLiterals esLits = new XMLLiterals("r01f","es"); esLits.get("miSeccion/miSubSeccion/miElemento); // Consultara el elemento es Lost textos se cargan y cachean por CODIGO DE APLICACION.
XMLLiterals(String, String) - Constructor for class com.ejie.r01f.xmlproperties.XMLLiterals
Constructor en base al codigo de entidad y el lenguaje
XMLManager - class com.ejie.r01f.util.XMLManager.
 
XMLManager() - Constructor for class com.ejie.r01f.util.XMLManager
 
XMLNode - class com.ejie.r01f.xmlbuilder.XMLNode.
 
XMLNode() - Constructor for class com.ejie.r01f.xmlbuilder.XMLNode
Creates new Node
XMLNode(boolean) - Constructor for class com.ejie.r01f.xmlbuilder.XMLNode
 
XMLNode(String) - Constructor for class com.ejie.r01f.xmlbuilder.XMLNode
 
XMLNode(String, String) - Constructor for class com.ejie.r01f.xmlbuilder.XMLNode
 
XMLNode(String, boolean) - Constructor for class com.ejie.r01f.xmlbuilder.XMLNode
 
XMLNode(String, String, boolean) - Constructor for class com.ejie.r01f.xmlbuilder.XMLNode
 
XMLNodeSerializer - class com.ejie.r01f.xml.utils.XMLNodeSerializer.
Clase auxiliar para hacer operaciones con XML
XMLNodeSerializer() - Constructor for class com.ejie.r01f.xml.utils.XMLNodeSerializer
 
XMLProperties - class com.ejie.r01f.xmlproperties.XMLProperties.
Maneja las properties del sistema Las propiedades se definen en ficheros xml con cualquier estructura, pero con la restriccion de que han de empezar por el tag 'properties' Ejemplo: [Cualquier estructura de XML] el valor Las propiedades se consultan utilizando sentencias XPath desde properties Por ejemplo: XMLProperties.get("r01f","misProps/miProp"); Las propiedades se cargan y cachean por CODIGO DE APLICACION.
XMLPropertiesException - exception com.ejie.r01f.xmlproperties.XMLPropertiesException.
 
XMLPropertiesException() - Constructor for class com.ejie.r01f.xmlproperties.XMLPropertiesException
Constructor
XMLPropertiesException(String) - Constructor for class com.ejie.r01f.xmlproperties.XMLPropertiesException
Constructor
XMLStringFormater - class com.ejie.r01f.xml.utils.XMLStringFormater.
Formatea una cadena XML
XMLStringFormater(Reader) - Constructor for class com.ejie.r01f.xml.utils.XMLStringFormater
 
XMLUtils - class com.ejie.r01f.util.XMLUtils.
 
XMLUtils() - Constructor for class com.ejie.r01f.util.XMLUtils
 
XML_HEADER_DIRECTIVE - Static variable in class com.ejie.r01f.rpcdispatcher.RPCConstants
 
XMap - class com.ejie.r01f.util.XMap.
 
XMap() - Constructor for class com.ejie.r01f.util.XMap
Constructores
XMap(InputStream) - Constructor for class com.ejie.r01f.util.XMap
 
XMap(String) - Constructor for class com.ejie.r01f.util.XMap
 
XOConstants - class com.ejie.r01f.xml.marshalling.XOConstants.
Constantes
XOConstants() - Constructor for class com.ejie.r01f.xml.marshalling.XOConstants
 
XOManager - class com.ejie.r01f.xml.marshalling.XOManager.
Clase que maneja los marshallers XML<->Objetos En esta clase se cachean las marshallers para cada definición de mapeo de XML a objetos, de forma que NO sea necesario volver a leer el mapa con la definción (ahorrando tiempos) Para cargar los mapas se pueden utilizar DOS sistemas: - Loader en base a ficheros (por defecto) Lee los ficheros desde la ruta que se pasa como parametro - Loader en base a ClassPath Lee los ficheros desde el classPath, para lo cual es necesario que el fichero con el mapeo XML<->Objetos esté en algún lugar del ClassPath Ejemplo: Si los ficheros de mapeo están en /aplic/[appCode]/html/datos: - Si se utiliza el loader en base a ficheros, en el nombre del fichero que hay que pasar a las funciones de esta clase es la ruta absoluta: /aplic/[appCode]/html/datos/[ficheroMapeo].xml - Si se utiliza el loader en base al classPath, en el nombre del fichero que hay que pasar a las funciones de esta clase hay que pasar una ruta que este en el classPath: Si el classpath contiene /aplic, bastaría con pasar: /[appCode]/html/datos/[ficheroMapeo].xml Es posible indicar el Loader a utilizar estableciendo la propiedad xoMarshalling/mapFilesLoader del fichero r01f.properties.xml a uno de los siguientes valores: FILESYSTEM Carga directa desde la localización absoluta en disco CLASSPATH Carga relativa desde cualquier localización del classPath
XOManager() - Constructor for class com.ejie.r01f.xml.marshalling.XOManager
 
XOMap - class com.ejie.r01f.xml.marshalling.XOMap.
Obtiene una representación en memoria de la definición en XML de una jerarquia de clases.
XOMap() - Constructor for class com.ejie.r01f.xml.marshalling.XOMap
Constructor vacio
XOMap(InputStream) - Constructor for class com.ejie.r01f.xml.marshalling.XOMap
Constructor en base a un inputStream de la definición del mapeo
XOMap(String) - Constructor for class com.ejie.r01f.xml.marshalling.XOMap
Constructor en base a un String con el mapeo
XOMarshaller - class com.ejie.r01f.xml.marshalling.XOMarshaller.
Clase para convertir de XML a Objetos y viceversa (marshall / unMarshall)
XOMarshaller() - Constructor for class com.ejie.r01f.xml.marshalling.XOMarshaller
Creates a new instance of OXMarshaller
XOMarshaller(XOMap) - Constructor for class com.ejie.r01f.xml.marshalling.XOMarshaller
Crea una nueva instancia a partir de un mapa
XOMarshaller(String) - Constructor for class com.ejie.r01f.xml.marshalling.XOMarshaller
Crea una nueva instancia a partir de un XML de mapeo
XOMarshaller(File) - Constructor for class com.ejie.r01f.xml.marshalling.XOMarshaller
Crea una nueva instancia a partir de un fichero XML con el mapeo
XOMarshaller(InputStream) - Constructor for class com.ejie.r01f.xml.marshalling.XOMarshaller
Crea una nueva instancia a partir de un fichero XML con el mapeo
XOMarshallerException - exception com.ejie.r01f.xml.marshalling.XOMarshallerException.
Excepción que se lanza en el proceso de creacion de Objetos a partir de xml o en el proceso de creaccion de xml a partir de objetos Fecha de creación: (17/11/001)
XOMarshallerException() - Constructor for class com.ejie.r01f.xml.marshalling.XOMarshallerException
Constructor
XOMarshallerException(String) - Constructor for class com.ejie.r01f.xml.marshalling.XOMarshallerException
Constructor
XOMarshallerException(String, Exception) - Constructor for class com.ejie.r01f.xml.marshalling.XOMarshallerException
Constructor
XTAG_CURROBJECT - Static variable in class com.ejie.r01f.taglibs.xtags.Constants
 
XTAG_CURROBJECT - Static variable in class com.ejie.r01f.taglibs.xtags.objects.XTagConstants
 
XTAG_NAME_PATH_SEPARATOR - Static variable in class com.ejie.r01f.taglibs.xtags.Constants
 
XTAG_NAME_PATH_SEPARATOR - Static variable in class com.ejie.r01f.taglibs.xtags.objects.XTagConstants
 
XTAG_PROTOCOLDATA - Static variable in class com.ejie.r01f.taglibs.xtags.Constants
 
XTAG_PROTOCOLDATA - Static variable in class com.ejie.r01f.taglibs.xtags.objects.XTagConstants
 
XTAG_RPCCALL - Static variable in class com.ejie.r01f.taglibs.xtags.Constants
 
XTAG_RPCCALL - Static variable in class com.ejie.r01f.taglibs.xtags.objects.XTagConstants
 
XTAG_TABS_COLLECTION - Static variable in class com.ejie.r01f.taglibs.xtags.Constants
 
XTAG_TABS_COLLECTION - Static variable in class com.ejie.r01f.taglibs.xtags.objects.XTagConstants
 
XTag - class com.ejie.r01f.taglibs.xtags.objects.XTag.
Clase que encapsula un elemento xml y sus subelementos para la obtencion del xml a partir del HTML Lo que se tiene son jerarquias como la de los siguientes ejemplos: proyecto.interlocutor.nombre Seria.
XTag() - Constructor for class com.ejie.r01f.taglibs.xtags.objects.XTag
Creates a new instance of XTag
XTag(String, String) - Constructor for class com.ejie.r01f.taglibs.xtags.objects.XTag
 
XTag(String, int, String) - Constructor for class com.ejie.r01f.taglibs.xtags.objects.XTag
 
XTag(String, String, int, String) - Constructor for class com.ejie.r01f.taglibs.xtags.objects.XTag
 
XTag(String, String, int, String, boolean, boolean) - Constructor for class com.ejie.r01f.taglibs.xtags.objects.XTag
 
XTagConstants - class com.ejie.r01f.taglibs.xtags.objects.XTagConstants.
Constrantes
XTagConstants() - Constructor for class com.ejie.r01f.taglibs.xtags.objects.XTagConstants
 
xmlHeaderDirective - Static variable in class com.ejie.r01f.xml.marshalling.XOConstants
 
xmlTagName - Variable in class com.ejie.r01f.taglibs.xtags.objects.XTag
 
xoMapping - Static variable in class com.ejie.r01f.businessdelegate.test.TestComplexObj
 

A B C D E F G H I J K L M N O P Q R S T U V W X _