Uses of Interface
org.ujoframework.extensions.UjoTextable

Packages that use UjoTextable
org.ujoframework.core The core classes. 
org.ujoframework.extensions UJO extensions. 
org.ujoframework.implementation.array   
org.ujoframework.implementation.bean   
org.ujoframework.implementation.factory   
org.ujoframework.implementation.field   
org.ujoframework.implementation.map   
org.ujoframework.implementation.mapImpl   
org.ujoframework.implementation.orm   
org.ujoframework.implementation.quick   
org.ujoframework.implementation.registrar   
org.ujoframework.orm The ORM support. 
org.ujoframework.orm.metaModel   
org.ujoframework.swing Swing support. 
 

Uses of UjoTextable in org.ujoframework.core
 

Methods in org.ujoframework.core with type parameters of type UjoTextable
<T extends UjoTextable>
T
UjoManagerXML.parseXML(java.io.File inputFile, java.lang.Class<T> classType, boolean validating, java.lang.Object context)
          Create Ujo from XMl file
<T extends UjoTextable>
T
UjoManagerXML.parseXML(java.io.File inputFile, java.lang.Class<T> classType, java.lang.Object context)
          Create Ujo from XMl file
<T extends UjoTextable>
T
UjoManagerXML.parseXML(java.io.InputStream inputStream, java.lang.Class<T> classType, boolean validate, java.lang.Object context)
          An Deserialization of Ujo object.
<T extends UjoTextable>
T
UjoManagerXML.parseXML(java.io.InputStream inputStream, java.lang.Class<T> classType, java.lang.Object context)
          An Deserialization of Ujo object.
 

Methods in org.ujoframework.core with parameters of type UjoTextable
protected  void UjoManagerXML.printAttributes(UjoTextable ujo, java.io.Writer writer)
          Print attributes of the tag
 void UjoManagerXML.printItem(java.io.Writer writer, java.lang.Class defaultType, java.lang.Object value, UjoTextable ujo, UjoProperty prop)
          Print "value" to XML.
 void UjoManagerXML.printProperties(java.io.Writer writer, UjoTextable ujo)
          Write required properties to XML writer.
 void UjoManagerXML.printProperties(java.io.Writer writer, UjoTextable ujo, UjoPropertyList properties)
          Write required properties to a XML writer.
 void UjoManagerXML.printValue2XML(java.io.Writer writer, java.lang.Class itemType, java.lang.Object value, UjoTextable ujo, UjoProperty prop, boolean simpleProperty)
          Print "value" to XML.
 void UjoManagerXML.saveXML(java.io.File xmlFile, UjoTextable ujo, java.lang.String xmlHeader, java.lang.Object context)
          Write properties to XML include XML header.
 void UjoManagerXML.saveXML(java.io.OutputStream outStream, UjoTextable ujo, java.lang.String xmlHeader, java.lang.Object context)
          Write properties to XML include XML header.
 void UjoManagerXML.saveXML(java.io.Writer writer, java.lang.String rootElementName, UjoTextable ujo, java.lang.String xmlHeader, java.lang.Object context)
          Write properties to XML include a XML header.
 void UjoManagerXML.saveXML(java.io.Writer writer, UjoTextable ujo, java.lang.String xmlHeader, java.lang.Object context)
          Write properties to XML include XML header.
 

Uses of UjoTextable in org.ujoframework.extensions
 

Classes in org.ujoframework.extensions that implement UjoTextable
 class AbstractUjo
          This is a simple abstract implementation of Ujo.
 class AbstractUjoExt<UJO_IMPL extends UjoExt>
          This is a simple abstract implementation of Ujo.
 

Uses of UjoTextable in org.ujoframework.implementation.array
 

Classes in org.ujoframework.implementation.array that implement UjoTextable
 class ArrayUjo
          This is a very fast abstract implementation of Ujo.
 class ArrayUjoExt<UJO extends ArrayUjoExt>
          This is an Groovy style implementation of a setter and getter methods for an easier access for developpers, however the methods have got an weaker type control in compare to the MapUjo implementation.
 

Uses of UjoTextable in org.ujoframework.implementation.bean
 

Classes in org.ujoframework.implementation.bean that implement UjoTextable
 class BeanUjo
          This abstract class is inteded for an easy implementation of UJO features to a completed JavaBean object.
 class BeanUjoExt<UJO extends BeanUjoExt>
          This is an Groovy style implementation of a setter and getter methods for an easier access for developpers, however the methods have got an weaker type control in compare to the MapUjo implementation.
 

Uses of UjoTextable in org.ujoframework.implementation.factory
 

Classes in org.ujoframework.implementation.factory that implement UjoTextable
 class FactoryUjo
          The Ujo Factory.
 class FactoryUjoExt<UJO_IMPL extends FactoryUjoExt>
          En extended Ujo implementation.
 

Uses of UjoTextable in org.ujoframework.implementation.field
 

Classes in org.ujoframework.implementation.field that implement UjoTextable
 class FieldUjo
          The abstract Ujo implementation use a direct access to its private object fiels.
 class FieldUjoExt<UJO extends FieldUjoExt>
          The abstract Ujo implementation use a direct access to its private object fiels.
 

Uses of UjoTextable in org.ujoframework.implementation.map
 

Classes in org.ujoframework.implementation.map that implement UjoTextable
 class MapUjo
          This is a simple abstract implementation of Ujo.
 class MapUjoExt<UJO extends MapUjoExt>
          This is an Groovy style implementation of a setter and getter methods for an easier access for developpers, however the methods have got an weaker type control in compare to the MapUjo implementation.
 

Uses of UjoTextable in org.ujoframework.implementation.mapImpl
 

Classes in org.ujoframework.implementation.mapImpl that implement UjoTextable
 class MapImplUjo
          The abstract String Map Ujo imlementation is an implementation of the UjoMiddle and Map<CharSequence,Object> interfaces.
 class MapImplUjoMiddle<UJO_IMPL extends MapImplUjoMiddle>
          This is an middle extended implementation of a setter and getter methods for an easier access for developpers.
 

Uses of UjoTextable in org.ujoframework.implementation.orm
 

Classes in org.ujoframework.implementation.orm that implement UjoTextable
 class OrmTable<UJO_IMPL extends Ujo>
          This abstract implementation of the OrmUjo interface is situable for implementation the persistent entities.
 

Uses of UjoTextable in org.ujoframework.implementation.quick
 

Classes in org.ujoframework.implementation.quick that implement UjoTextable
 class QuickUjo
          This is a fast implementation of the Ujo.
 class QuickUjoMid<UJO_IMPL extends QuickUjoMid>
          This is a fast implementation of the UjoMiddle.
 

Uses of UjoTextable in org.ujoframework.implementation.registrar
 

Classes in org.ujoframework.implementation.registrar that implement UjoTextable
 class RegistrarUjo<UJO extends Ujo>
          A MapUjo implementation with a Property change listener support.
 class RegistrarUjoExt<UJO extends RegistrarUjoExt>
          A MapUjoExt implementation with a Property change listener support.
 

Uses of UjoTextable in org.ujoframework.orm
 

Classes in org.ujoframework.orm that implement UjoTextable
 class AbstractMetaModel
          Abstract Metamodel
 class DbProcedure<UJO extends DbProcedure>
          Abstract database procedure.
 

Uses of UjoTextable in org.ujoframework.orm.metaModel
 

Classes in org.ujoframework.orm.metaModel that implement UjoTextable
 class MetaColumn
          Database column metadata
 class MetaDatabase
          A logical database description.
 class MetaIndex
          DB index metamodel.
 class MetaParams
          A logical database description.
 class MetaPKey
          The table primary key.
 class MetaProcedure
          DB procudure or function meta-model.
 class MetaRelation2Many
          The database/object relation to many.
 class MetaRoot
          A logical database description.
 class MetaSelect
          Contains a SQL statement for a UJO view user SELECT.
 class MetaTable
          DB table or view meta-model.
 

Uses of UjoTextable in org.ujoframework.swing
 

Classes in org.ujoframework.swing that implement UjoTextable
 class UjoPropertyRow
          An implementation of TableModel for List of Ujo objects.
 



Copyright © 2010. All Rights Reserved.