Package | com.adobe.fiber.valueobjects |
Class | public class AbstractEntityMetadata |
Inheritance | AbstractEntityMetadata EventDispatcher Object |
Implements | IModelType, IModelInstance |
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
function get property-nameStyle():IStyle
Bindable getter for the property's com.adobe.fiber.styles.IStyle
instance.
Return null for properties that do not have an associated style.
function get isproperty-nameAvailable():Boolean
bindable getter for the property's available state with respect to variants. Always returns true for properties that are not inside a variant.
function invalidateDependentproperty-name():void
Per-property functions that cause all derived properties that
depend on this property to be recalculated.
PropertyChanged
events will be fired once the calculation of each
such derived property completes. Note that these functions are only generated for
data properties that have dependent derived properties.
Property | Defined By | ||
---|---|---|---|
constructor : Object
A reference to the class object or constructor function for a given object instance. | Object | ||
invalidConstraints : Array [read-only]
Returns an Array of currently invalid constraints or an empty Array
if the value object is currently valid. | AbstractEntityMetadata | ||
prototype : Object [static]
A reference to the prototype object of a class or function object. | Object | ||
validationFailureMessages : Array [read-only]
Returns an Array of localized error messages corresponding to the current
set of failed constraints and validations of the value object. | AbstractEntityMetadata |
Method | Defined By | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registers an event listener object with an EventDispatcher object so that the listener
receives notification of an event. | EventDispatcher | ||
Dispatches an event into the event flow. | EventDispatcher | ||
Returns the names of all association properties. | AbstractEntityMetadata | ||
Returns the names of all available properties of this instance as determined by variants. | AbstractEntityMetadata | ||
Gets the base type of a collection property. | AbstractEntityMetadata | ||
Returns the names of all collection properties. | AbstractEntityMetadata | ||
Returns the names of all data properties for an entity regardless of whether
they are currently available. | AbstractEntityMetadata | ||
Returns an Array of currently invalid constraints whose values may
change as a result of propertyName changing. | AbstractEntityMetadata | ||
Gets all derived properties whose values may change as a result of this data property's
value changing. | AbstractEntityMetadata | ||
Gets the names of all services that derived properties of this
entity depend on for their calculations. | AbstractEntityMetadata | ||
Gets the entity's name for a given value object. | AbstractEntityMetadata | ||
Returns the names of all guarded properties for an entity regardless of whether
they are currently available. | AbstractEntityMetadata | ||
Returns a map of identity property names to their current values. | AbstractEntityMetadata | ||
Returns the mappedBy property for the passed-in association property;
Returns null if the passed-in assocaition property is not mapped by a property. | AbstractEntityMetadata | ||
Returns the names of all properties for an entity regardless of whether
they are currently available. | AbstractEntityMetadata | ||
Returns the length set for the passed-in property. | AbstractEntityMetadata | ||
Get the type of a given property. | AbstractEntityMetadata | ||
Returns an Array of localized error messages corresponding to the current
set of failed validations for the given property. | AbstractEntityMetadata | ||
Returns the names of all required properties. | AbstractEntityMetadata | ||
Returns style object for property. | AbstractEntityMetadata | ||
Returns the names of all unguarded properties for an entity. | AbstractEntityMetadata | ||
Gets the value of a property. | AbstractEntityMetadata | ||
Checks whether the EventDispatcher object has any listeners registered for a specific type
of event. | EventDispatcher | ||
Indicates whether an object has a specified property defined. | Object | ||
Determines if a property is available as is determined by variants. | AbstractEntityMetadata | ||
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | ||
Indicates whether the specified property exists and is enumerable. | Object | ||
Removes a listener from the EventDispatcher object. | EventDispatcher | ||
Sets the availability of a dynamic property for loop operations. | Object | ||
Sets the value of a property. | AbstractEntityMetadata | ||
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | ||
Returns the string representation of the specified object. | Object | ||
Returns the primitive value of the specified object. | Object | ||
Checks whether an event listener is registered with this EventDispatcher object or any of
its ancestors for the specified event type. | EventDispatcher |
invalidConstraints | property |
invalidConstraints:Array
[read-only] Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Returns an Array of currently invalid constraints or an empty Array if the value object is currently valid.
Implementation
public function get invalidConstraints():Array
validationFailureMessages | property |
validationFailureMessages:Array
[read-only] Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Returns an Array of localized error messages corresponding to the current set of failed constraints and validations of the value object. Returns an empty Array if the value object is currently valid.
Implementation
public function get validationFailureMessages():Array
getAssociationProperties | () | method |
public function getAssociationProperties():Array
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Returns the names of all association properties.
ReturnsArray — Names of all association properties
|
getAvailableProperties | () | method |
public function getAvailableProperties():IPropertyIterator
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Returns the names of all available properties of this instance as determined by variants.
ReturnsIPropertyIterator — Names of all available properties of this instance as determined by variants.
|
getCollectionBase | () | method |
public function getCollectionBase(propertyName:String):String
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Gets the base type of a collection property.
Parameters
propertyName:String — Name of desired property
|
String — Fully qualified name of the collection's base class
|
getCollectionProperties | () | method |
getDataProperties | () | method |
public function getDataProperties():Array
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Returns the names of all data properties for an entity regardless of whether they are currently available.
ReturnsArray — Names of all data properties for an entity
|
getDependantInvalidConstraints | () | method |
public function getDependantInvalidConstraints(propertyName:String):Array
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Returns an Array of currently invalid constraints whose values may change as a result of propertyName changing. If there are no such properties, an empty Array is returned.
Parameters
propertyName:String — Name of property for which an Array of dependant invalid constraints
is retrieved
|
Array — Array of currently invalid constraints whose values may
change as a result of propertyName changing. If there are no
such properties, an empty Array is returned.
|
getDependants | () | method |
public function getDependants(propertyName:String):Array
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Gets all derived properties whose values may change as a result of this data property's value changing.
Parameters
propertyName:String — Name of data property for which to get dependants
|
Array — All derived properties depending on this data propery
|
getDependedOnServices | () | method |
public function getDependedOnServices():Array
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Gets the names of all services that derived properties of this entity depend on for their calculations.
ReturnsArray — array of service names that derived properties of this
entity depend on for their calculations.
|
getEntityName | () | method |
getGuardedProperties | () | method |
public function getGuardedProperties():Array
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Returns the names of all guarded properties for an entity regardless of whether they are currently available.
ReturnsArray — Names of all guarded properties for an entity
|
getIdentityMap | () | method |
public function getIdentityMap():Object
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Returns a map of identity property names to their current values.
ReturnsObject — Map of identity property names to their current values
|
getMappedByProperty | () | method |
public function getMappedByProperty(associationProperty:String):String
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Returns the mappedBy
property for the passed-in association property;
Returns null if the passed-in assocaition property is not mapped by a property.
Returns null of the passed-in property is not an association property.
Parameters
associationProperty:String — the property name.
|
String — The mappedBy property for the passed-in association property.
Returns null if the passed-in assocaition property is not mapped by a property.
Returns null of the passed-in property is not an association property.
|
getProperties | () | method |
public function getProperties():Array
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Returns the names of all properties for an entity regardless of whether they are currently available.
ReturnsArray — Names of all properties for an entity
|
getPropertyLength | () | method |
public function getPropertyLength(propertyName:String):int
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Returns the length set for the passed-in property. Returns zero if length was not set for the property.
Parameters
propertyName:String — the name of the property.
|
int — Length set for the passed-in property.
Returns zero if length was not set for the property.
|
getPropertyType | () | method |
public function getPropertyType(propertyName:String):String
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 4.5 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Get the type of a given property.
Parameters
propertyName:String — the name of the property.
|
String — the type of the given property.
|
getPropertyValidationFailureMessages | () | method |
public function getPropertyValidationFailureMessages(propertyName:String):Array
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Returns an Array of localized error messages corresponding to the current set of failed validations for the given property. Returns an empty Array if the property currently has no failing validations.
Parameters
propertyName:String — Name of property of interest
|
Array — Array of localized error messages corresponding to the current
set of failed validations for the given property. Returns
an empty Array if the property currently has no failing validations.
|
getRequiredProperties | () | method |
getStyle | () | method |
public function getStyle(propertyName:String):IStyle
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Returns style object for property.
Parameters
propertyName:String — Name of property for which associated style is retrieved
|
IStyle — Style object for property
|
getUnguardedProperties | () | method |
public function getUnguardedProperties():Array
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Returns the names of all unguarded properties for an entity.
ReturnsArray — Names of all unguarded properties for an entity
|
getValue | () | method |
public function getValue(propertyName:String):*
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Gets the value of a property.
Parameters
propertyName:String — Desired property
|
* — Current value of propertyName for this instance
|
isAvailable | () | method |
public function isAvailable(propertyName:String):Boolean
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Determines if a property is available as is determined by variants. An error is thrown
if the property name that is passed in is not a valid property of the value object.
To add bindings to the availability flag for a particular
property, use the ispropertyNameAvailable()
function. This function exists for every
property and supports binding.
Parameters
propertyName:String — Property to check for availability
|
Boolean — true if this property is currently available as is determined by variants
|
setValue | () | method |
public function setValue(propertyName:String, value:*):void
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Sets the value of a property. To clear a value, set it to undefined.
Parameters
propertyName:String — Property to set
| |
value:* — Value to set property to
|
Mon Nov 28 2011, 06:48 AM -08:00