Uses of Class
org.ujoframework.extensions.Property

Packages that use Property
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.orm.metaModel   
org.ujoframework.swing Swing support. 
 

Uses of Property in org.ujoframework.extensions
 

Subclasses of Property in org.ujoframework.extensions
 class ListProperty<UJO extends Ujo,ITEM>
          The main implementation of the interface ListUjoProperty.
 

Methods in org.ujoframework.extensions with type parameters of type Property
<PROPERTY extends Property>
PROPERTY
Property.writeDefault(VALUE value)
          Assign a Default value.
 

Methods in org.ujoframework.extensions that return Property
protected  Property<UJO,VALUE> Property.init(java.lang.String name, java.lang.Class<VALUE> type, VALUE defaultValue, int index, java.lang.Boolean lock)
          Property initialization.
static
<UJO extends Ujo,VALUE>
Property<UJO,VALUE>
Property.newInstance(java.lang.String name, java.lang.Class<VALUE> type)
          Returns a new instance of property where the default value is null.
static
<UJO extends Ujo,VALUE>
Property<UJO,VALUE>
Property.newInstance(java.lang.String name, java.lang.Class<VALUE> type, int index)
          Returns a new instance of property where the default value is null.
static
<UJO extends Ujo,VALUE>
Property<UJO,VALUE>
Property.newInstance(java.lang.String name, java.lang.Class<VALUE> type, VALUE value, int index, boolean lock)
          Returns a new instance of property where the default value is null.
static
<UJO extends Ujo,VALUE>
Property<UJO,VALUE>
Property.newInstance(java.lang.String name, VALUE value)
          A Property Factory where a property type is related from from default value.
static
<UJO extends Ujo,VALUE>
Property<UJO,VALUE>
Property.newInstance(java.lang.String name, VALUE value, int index)
          A Property Factory where a property type is related from from default value.
static
<UJO extends Ujo,VALUE>
Property<UJO,VALUE>
Property.newInstance(UjoProperty p, int index)
          A Property Factory where a property type is related from from default value.
 

Methods in org.ujoframework.extensions with parameters of type Property
static void PropertyModifier.setIndex(int anIndex, Property property)
          Set the new index and lock the property if it is not locked yet.
static void PropertyModifier.setName(java.lang.String name, Property property)
          Write name into property if it is not locked yet.
 

Uses of Property in org.ujoframework.implementation.array
 

Methods in org.ujoframework.implementation.array that return Property
static
<UJO extends ArrayUjoExt,VALUE>
Property<UJO,VALUE>
ArrayUjoExt.newProperty(java.lang.String name, java.lang.Class<VALUE> type, int index)
          Returns a new instance of property where the default value is null.
static
<UJO extends ArrayUjo,VALUE>
Property<UJO,VALUE>
ArrayUjo.newProperty(java.lang.String name, java.lang.Class<VALUE> type, int index)
          Returns a new instance of property where the default value is null.
protected static
<UJO extends ArrayUjoExt,VALUE>
Property<UJO,VALUE>
ArrayUjoExt.newProperty(java.lang.String name, VALUE value, int index)
          A Property Factory Method assigns a next property index.
protected static
<UJO extends ArrayUjo,VALUE>
Property<UJO,VALUE>
ArrayUjo.newProperty(java.lang.String name, VALUE value, int index)
          A Property Factory Method assigns a next property index.
 

Uses of Property in org.ujoframework.implementation.bean
 

Subclasses of Property in org.ujoframework.implementation.bean
 class BeanProperty<UJO extends Ujo,VALUE>
          A Map property implementation.
 class BeanPropertyList<UJO extends Ujo,ITEM>
          Property List implementation.
 

Uses of Property in org.ujoframework.implementation.factory
 

Subclasses of Property in org.ujoframework.implementation.factory
 class FactoryProperty<UJO extends Ujo,VALUE>
          A Factory property implementation.
 

Uses of Property in org.ujoframework.implementation.field
 

Subclasses of Property in org.ujoframework.implementation.field
 class FieldProperty<UJO extends Ujo,VALUE>
          A Field property implementation.
 class FieldPropertyList<UJO extends Ujo,ITEM>
          Property List implementation.
 

Uses of Property in org.ujoframework.implementation.map
 

Methods in org.ujoframework.implementation.map that return Property
static
<UJO extends MapUjoExt,VALUE>
Property<UJO,VALUE>
MapUjoExt.newProperty(java.lang.String name, java.lang.Class<VALUE> type)
          Returns a new instance of property where the default value is null.
static
<UJO extends MapUjo,VALUE>
Property<UJO,VALUE>
MapUjo.newProperty(java.lang.String name, java.lang.Class<VALUE> type)
          Returns a new instance of property where the default value is null.
protected static
<UJO extends MapUjoExt,VALUE>
Property<UJO,VALUE>
MapUjoExt.newProperty(java.lang.String name, VALUE value)
          A Property Factory Method assigns a next property index.
protected static
<UJO extends MapUjo,VALUE>
Property<UJO,VALUE>
MapUjo.newProperty(java.lang.String name, VALUE value)
          A Property Factory Method assigns a next property index.
static
<UJO extends MapUjo,VALUE>
Property<UJO,VALUE>
MapUjo.newProperty(UjoProperty p, int index)
          Returns a new instance of property where the default value is null.
 

Uses of Property in org.ujoframework.implementation.mapImpl
 

Methods in org.ujoframework.implementation.mapImpl that return Property
static
<UJO extends MapImplUjo,VALUE>
Property<UJO,VALUE>
MapImplUjo.newProperty(java.lang.String name, java.lang.Class<VALUE> type)
          Returns a new instance of property where the default value is null.
protected static
<UJO extends MapImplUjo,VALUE>
Property<UJO,VALUE>
MapImplUjo.newProperty(java.lang.String name, VALUE value)
          A Property Factory Method assigns a next property index.
 

Uses of Property in org.ujoframework.implementation.orm
 

Subclasses of Property in org.ujoframework.implementation.orm
 class RelationToMany<UJO extends OrmTable,ITEM extends OrmTable>
          The relation 1:N to another UJO type items
 class RelationToOne<UJO extends OrmUjo,VALUE>
          Foreign key property
 

Uses of Property in org.ujoframework.implementation.quick
 

Methods in org.ujoframework.implementation.quick that return Property
protected static
<UJO extends Ujo,VALUE>
Property<UJO,VALUE>
QuickUjo.newProperty(java.lang.Class<VALUE> type)
          A Property Factory creates new property and assigns a next property index.
protected static
<UJO extends Ujo,VALUE>
Property<UJO,VALUE>
QuickUjo.newProperty(java.lang.String name, java.lang.Class<VALUE> type)
          A Property Factory creates new property and assigns a next property index.
protected static
<UJO extends Ujo,VALUE>
Property<UJO,VALUE>
QuickUjo.newProperty(java.lang.String name, java.lang.Class<VALUE> type, VALUE defaultValue, int index, boolean lock)
          A Property Factory creates new property and assigns a next property index.
protected static
<UJO extends Ujo,VALUE>
Property<UJO,VALUE>
QuickUjo.newProperty(java.lang.String name, VALUE value)
          A Property Factory creates new property and assigns a next property index.
static
<UJO extends QuickUjo,VALUE>
Property<UJO,VALUE>
QuickUjo.newProperty(UjoProperty p)
          Returns a new instance of property where the default value is null.
protected static
<UJO extends Ujo,VALUE>
Property<UJO,VALUE>
QuickUjo.newProperty(VALUE value)
          A Property Factory creates new property and assigns a next property index.
 

Uses of Property in org.ujoframework.orm.metaModel
 

Fields in org.ujoframework.orm.metaModel declared as Property
static Property<MetaTable,java.lang.String> MetaTable.ALIAS
          The unique table/view name over all Databases in scope one OrmHandler
static Property<MetaParams,java.lang.Object> MetaParams.APPL_CONTEXT
          An application context for initializaton of the customer componets of the meta-model.
static Property<MetaParams,CachePolicy> MetaParams.CACHE_POLICY
          Session cache policy.
static Property<MetaTable,MetaDatabase> MetaTable.DATABASE
          Database
static Property<MetaProcedure,MetaDatabase> MetaProcedure.DATABASE
          Database
static Property<MetaTable,RelationToMany> MetaTable.DB_PROPERTY
          Database relative property (a base definition of table)
static Property<MetaProcedure,UjoProperty> MetaProcedure.DB_PROPERTY
          Procedure property (a base definition of the procedure)
static Property<MetaColumn,DbType> MetaColumn.DB_TYPE
          Database Type
static Property<MetaColumn,java.lang.String> MetaColumn.DEFAULT_VALUE
          DB Default value
static Property<MetaDatabase,java.lang.Class> MetaDatabase.DIALECT
          SQL dialect type of Class<SqlDialect>
static Property<MetaSelect,java.lang.String> MetaSelect.FROM
           
static Property<MetaSelect,java.lang.String> MetaSelect.GROUP
           
static Property<MetaParams,CheckReport> MetaParams.CHECK_KEYWORDS
          CheckReport a keyword in the database table or colum name inside the meta-model.
static Property<MetaTable,java.lang.String> MetaTable.ID
          The meta-model id
static Property<MetaRelation2Many,java.lang.String> MetaRelation2Many.ID
          The meta-model ID.
static Property<MetaProcedure,java.lang.String> MetaProcedure.ID
          The meta-model id
static Property<MetaDatabase,java.lang.String> MetaDatabase.ID
          The meta-model id
static Property<MetaColumn,java.lang.String> MetaColumn.INDEX
          A name of the non-unique database index for the column, where the same index can contain more columns.
static Property<MetaDatabase,java.lang.String> MetaDatabase.JDBC_DRIVER
          JDBC Driver
static Property<MetaDatabase,java.lang.String> MetaDatabase.JDBC_URL
          JDBC URL connection
static Property<MetaSelect,java.lang.String> MetaSelect.LIMIT
           
static Property<MetaColumn,java.lang.Boolean> MetaColumn.MANDATORY
          Column NOT-NULL
static Property<MetaParams,java.lang.Integer> MetaParams.MAX_ITEM_COUNT_4_IN
          The maximal count of items for the SQL IN operator, default value is 500 items The limit is used inside the method loadLazyValuesAsBatch(..).
static Property<MetaColumn,java.lang.Integer> MetaColumn.MAX_LENGTH
          Column value length
static Property<MetaTable,java.lang.String> MetaTable.NAME
          DB table name
static Property<MetaRelation2Many,java.lang.String> MetaRelation2Many.NAME
          The database column name.
static Property<MetaProcedure,java.lang.String> MetaProcedure.NAME
          Procedure name
static Property<MetaIndex,java.lang.String> MetaIndex.NAME
          Index database name
static Property<MetaSelect,java.lang.String> MetaSelect.ORDER
           
static Property<MetaParams,Orm2ddlPolicy> MetaParams.ORM2DLL_POLICY
          A policy to defining the database structure by a DDL.
static Property<MetaRoot,MetaParams> MetaRoot.PARAMETERS
          ORM parameters
static Property<MetaDatabase,java.lang.String> MetaDatabase.PASSWORD
          DB password
static Property<MetaTable,MetaPKey> MetaTable.PK
          Unique Primary Key
static Property<MetaColumn,java.lang.Integer> MetaColumn.PRECISION
          Column value precision
static Property<MetaColumn,java.lang.Boolean> MetaColumn.PRIMARY_KEY
          DB primary key
static Property<MetaDatabase,OrmUjo> MetaDatabase.ROOT
          An instance of the DB class.
static Property<MetaParams,java.io.File> MetaParams.SAVE_CONFIG_TO_FILE
          Framework can save the final configuration file to a new file for an external use.
static Property<MetaTable,java.lang.String> MetaTable.SELECT
          SQL SELECT statement
static Property<MetaSelect,java.lang.String> MetaSelect.SELECT
           
static Property<MetaTable,MetaSelect> MetaTable.SELECT_MODEL
          SQL SELECT model.
static Property<MetaTable,java.lang.String> MetaTable.SEQUENCE
          Name of DB sequence.
static Property<MetaParams,java.lang.Integer> MetaParams.SEQUENCE_CACHE
          Sequential cache parameter saves the number of requests to the following sequence when a insert statement into DB.
static Property<MetaDatabase,java.lang.Class> MetaDatabase.SEQUENCER
          The sequencer class for tables of the current database.
static Property<MetaTable,java.lang.String> MetaTable.SCHEMA
          Name of table schema.
static Property<MetaProcedure,java.lang.String> MetaProcedure.SCHEMA
          Name of table schema.
static Property<MetaDatabase,java.lang.String> MetaDatabase.SCHEMA
          MetaDatabase default schema
static Property<MetaRelation2Many,MetaTable> MetaRelation2Many.TABLE
          DB table
static Property<MetaPKey,MetaTable> MetaPKey.TABLE
          DB table
static Property<MetaIndex,MetaTable> MetaIndex.TABLE
          Table
static Property<MetaParams,java.lang.String> MetaParams.TABLE_ALIAS_PREFIX
          Special prameter for an automatically assembled table alias prefix.
static Property<MetaParams,java.lang.String> MetaParams.TABLE_ALIAS_SUFFIX
          Special prameter for an automatically assembled table alias prefix.
static Property<MetaRelation2Many,UjoProperty> MetaRelation2Many.TABLE_PROPERTY
          Table property
static Property<MetaParams,java.lang.Class> MetaParams.TYPE_SERVICE
          Change a TypeService class by a subtype for user type customization.
static Property<MetaIndex,java.lang.Boolean> MetaIndex.UNIQUE
          Is the index unique ?
static Property<MetaColumn,java.lang.String> MetaColumn.UNIQUE_INDEX
          A name of the unique database index for the column, where the same index can contain more columns.
static Property<MetaDatabase,java.lang.String> MetaDatabase.USER
          DB user
static Property<MetaTable,java.lang.Boolean> MetaTable.VIEW
          Is it a model of a database view or table ?
static Property<MetaSelect,java.lang.String> MetaSelect.WHERE
           
 

Uses of Property in org.ujoframework.swing
 

Fields in org.ujoframework.swing declared as Property
static Property<UjoPropertyRow,java.lang.Object> UjoPropertyRow.P_DEFAULT
          Default Value
static Property<UjoPropertyRow,java.lang.Integer> UjoPropertyRow.P_INDEX
          Index of property
static Property<UjoPropertyRow,java.lang.String> UjoPropertyRow.P_NAME
          Name of property
static Property<UjoPropertyRow,java.lang.String> UjoPropertyRow.P_TEXT
          Text Value
static Property<UjoPropertyRow,java.lang.Class> UjoPropertyRow.P_TYPE
          Type of property
static Property<UjoPropertyRow,java.lang.String> UjoPropertyRow.P_TYPENAME
          Class name without packages
static Property<UjoPropertyRow,java.lang.Object> UjoPropertyRow.P_USER1
          A user column can be used in table renderer for any purpose
static Property<UjoPropertyRow,java.lang.Object> UjoPropertyRow.P_USER2
          A user column can be used in table renderer for any purpose
static Property<UjoPropertyRow,java.lang.Object> UjoPropertyRow.P_VALUE
          Value
 



Copyright © 2010. All Rights Reserved.