A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  
data — Property in class org.granite.collections.UIDWeakSet
data — Property in class org.granite.reflect.visitor.Visitable
An arbitrary user data attached to this Visitable.
DATA_CONFLICTS — Constant static property in class org.granite.tide.data.events.TideDataConflictsEvent
DataObserver — Class in package org.granite.tide.data
The DataObserver component can be bound to a JMS topic and receive updates to managed entities.
This component encapsulates a Gravity Consumer.
All updates received are merged in the global context and a Flex event is dispatched to indicate what happened.

The events raised by this component are :
org.granite.tide.data.persist.<entityName>
org.granite.tide.data.update.<entityName>
org.granite.tide.data.remove.<entityName>

Where <entityName> is the unqualified class name of the entity.
DATE_TYPES — Constant static property in class org.granite.validation.BaseConstraint
An array of date types: [Date] (used when checking the value type of a constraint annotation argument).
DECIMAL128 — Constant static property in class org.granite.math.MathContext
A MathContext object with a precision setting matching the IEEE 754R Decimal128 format, 34 digits, and a rounding mode of RoundingMode.HALF_EVEN, the IEEE 754R default.
DECIMAL32 — Constant static property in class org.granite.math.MathContext
A MathContext object with a precision setting matching the IEEE 754R Decimal32 format, 7 digits, and a rounding mode of RoundingMode.HALF_EVEN, the IEEE 754R default.
DECIMAL64 — Constant static property in class org.granite.math.MathContext
A MathContext object with a precision setting matching the IEEE 754R Decimal64 format, 16 digits, and a rounding mode of RoundingMode.HALF_EVEN, the IEEE 754R default.
DecimalMax — Class in package org.granite.validation.constraints
The ActionsScript3 implementation of the javax.validation.constraints.DecimalMax annotation validator.

The annotated element must be a number whose value must be lower or equal to the specified maximum.

Accepted arguments are:

  • message (optional): used to create the error message (override the default message).
  • groups (optional): a comma separated list of fully qualified interface names that specifies the processing groups with which the constraint declaration is associated.
  • payload (optional): a comma separated list of String that specifies the payloads with which the constraint declaration is associated (unlike the Java implementation, payloads are arbitrary Strings and does not represent necessarily existing class names).
  • value (required): the maximum accepted value.
Supported types are:
  • org.granite.math.BigDecimal
  • org.granite.math.BigInteger
  • org.granite.math.Long
  • Number (with possible rounding issues)
  • int
  • uint
  • String
null elements are considered valid.

Example:

DecimalMin — Class in package org.granite.validation.constraints
The ActionsScript3 implementation of the javax.validation.constraints.DecimalMin annotation validator.

The annotated element must be a number whose value must be higher or equal to the specified minimum.

Accepted arguments are:

  • message (optional): used to create the error message (override the default message).
  • groups (optional): a comma separated list of fully qualified interface names that specifies the processing groups with which the constraint declaration is associated.
  • payload (optional): a comma separated list of String that specifies the payloads with which the constraint declaration is associated (unlike the Java implementation, payloads are arbitrary Strings and does not represent necessarily existing class names).
  • value (required): the minimum accepted value.
Supported types are:
  • org.granite.math.BigDecimal
  • org.granite.math.BigInteger
  • org.granite.math.Long
  • Number (with possible rounding issues)
  • int
  • uint
  • String
null elements are considered valid.

Example:

declaredBy — Property in class org.granite.reflect.DescribedElement
The Type instance this described element belongs to.
Default — Interface in package org.granite.validation.groups
The default validation group (equivalent of javax.validation.groups.Default).

Note: if you refer to javax.validation.groups.Default in your constraint annotation declaration, this interface will be used instead.

DEFAULT_COMPARE_ERROR — Constant static property in class org.granite.validators.CompareStringValidator
DEFAULT_CONTEXT — Constant static property in class org.granite.tide.Tide
DefaultExceptionHandler — Class in package org.granite.tide
Default exception handler that just displays the fault in an Alert
defaultHandlers — Static property in class org.granite.reflect.visitor.Guide
The array of the default handlers (not including the NullHandler)used when visiting a given bean.
defaultHeaders — Property in class org.granite.gravity.Producer
defaultMerge(em:org.granite.tide:IEntityManager, obj, dest, mergeUpdate, expr, parent, propertyName) — Static method in class org.granite.tide.data.EntityManager
Default implementation of entity merge for simple ActionScript beans with public properties Can be used to implement Tide managed entities with simple objects
DEFAULT_MESSAGE — Constant static property in class org.granite.validation.constraints.AssertFalse
The default message key of this constraint.
DEFAULT_MESSAGE — Constant static property in class org.granite.validation.constraints.AssertTrue
The default message key of this constraint.
DEFAULT_MESSAGE — Constant static property in class org.granite.validation.constraints.DecimalMax
The default message key of this constraint.
DEFAULT_MESSAGE — Constant static property in class org.granite.validation.constraints.DecimalMin
The default message key of this constraint.
DEFAULT_MESSAGE — Constant static property in class org.granite.validation.constraints.Digits
The default message key of this constraint.
DEFAULT_MESSAGE — Constant static property in class org.granite.validation.constraints.Future
The default message key of this constraint.
DEFAULT_MESSAGE — Constant static property in class org.granite.validation.constraints.Max
The default message key of this constraint.
DEFAULT_MESSAGE — Constant static property in class org.granite.validation.constraints.Min
The default message key of this constraint.
DEFAULT_MESSAGE — Constant static property in class org.granite.validation.constraints.NotNull
The default message key of this constraint.
DEFAULT_MESSAGE — Constant static property in class org.granite.validation.constraints.Null
The default message key of this constraint.
DEFAULT_MESSAGE — Constant static property in class org.granite.validation.constraints.Past
The default message key of this constraint.
DEFAULT_MESSAGE — Constant static property in class org.granite.validation.constraints.Pattern
The default message key of this constraint.
DEFAULT_MESSAGE — Constant static property in class org.granite.validation.constraints.Size
The default message key of this constraint.
DefaultMessageInterpolator — Class in package org.granite.validation
A default implementation of the IMessageInterpolator interface, that transform a constraint message key into a human readable error message.
DefaultMessageInterpolator() — Constructor in class org.granite.validation.DefaultMessageInterpolator
Constructs a new DefaultMessageInterpolator instance.
DefaultNamespaceResolver — Class in package org.granite.util
A default implementation of the INamespaceResolver interface.
Sample usage:
  var resolver:INamespaceResolver = new DefaultNamespaceResolver("path.to.defaultNamespace.*");
  resolver.resolve("MyClass"); // "path.to.defaultNamespace.MyClass"
  resolver.registerNamespace("a", "path.to.a.*");
  resolver.resolve("a:MyClass"); // "path.to.a.MyClass"
DefaultNamespaceResolver(defaultNamespaceValue, allowOverrideDefault, upperPolicy) — Constructor in class org.granite.util.DefaultNamespaceResolver
Constructs a new DefaultNamespaceResolver instance.
defaultNamespaceValue — Property in class org.granite.util.DefaultNamespaceResolver
The package name of the default (or empty) namespace.
DefaultServiceInitializer — Class in package org.granite.tide.service
DefaultServiceInitializer(contextRoot, graniteUrlMapping, gravityUrlMapping, secure) — Constructor in class org.granite.tide.service.DefaultServiceInitializer
Tide constructor used at component instantiation
DefaultTraversableResolver — Class in package org.granite.validation
Default implementation of the ITraversableResolver.
defaultValidatorClass — Property in class org.granite.validation.ValidatorFactory
The default IValidator implementation used for validation operations.
defaultValue — Property in class org.granite.validation.helper.ParameterDefinition
deleteProperty(name) — Method in class org.granite.collections.BasicMap
desc — Property in class org.granite.tide.data.model.SortInfo
describeClass(clazz) — Static method in class org.granite.util.ClassUtil
This method returns the XML description of the supplied class parameter.
DescribedElement — Class in package org.granite.reflect
The root parent class of all reflection API classes.
DescribedElement(declaredBy:org.granite.reflect:Type, desc) — Constructor in class org.granite.reflect.DescribedElement
Constructs a new DescribedElement instance.
description — Property in class org.granite.tide.seam.framework.Conversation
Description
destination — Property in class org.granite.tide.Tide
RemoteObject destination used
destroy() — Method in class org.granite.tide.collections.RemoteList
destroy() — Method in class org.granite.tide.seam.framework.ConversationList
destroy() — Method in class org.granite.tide.seam.framework.RemoteList
destroyComponentInstances(name) — Method in interface org.granite.tide.IContextManager
destroyContext(contextId, force) — Method in interface org.granite.tide.IContextManager
destroyContexts(force) — Method in interface org.granite.tide.IContextManager
destroyFinishedContexts() — Method in interface org.granite.tide.IContextManager
detail — Property in class org.granite.tide.TideMessage
DictionaryHandler — Class in package org.granite.reflect.visitor.handlers
Handles any flash.utils.Dictionary instance.
DictionaryUtil — Class in package org.granite.util
Static utility methods for Dictionary manipulation.
Digits — Class in package org.granite.validation.constraints
The ActionsScript3 implementation of the javax.validation.constraints.Digits annotation validator.

The annotated element must be a number whithin accepted range.

Accepted arguments are:

  • message (optional): used to create the error message (override the default message).
  • groups (optional): a comma separated list of fully qualified interface names that specifies the processing groups with which the constraint declaration is associated.
  • payload (optional): a comma separated list of String that specifies the payloads with which the constraint declaration is associated (unlike the Java implementation, payloads are arbitrary Strings and does not represent necessarily existing class names).
  • integer (required): the maximum number of integral digits.
  • fraction (required): the maximum number of fractional digits.
Supported types are:
  • org.granite.math.BigDecimal
  • org.granite.math.BigInteger
  • org.granite.math.Long
  • Number (with possible rounding issues)
  • int
  • uint
  • String
null elements are considered valid.

Example:

dirty — Property in class org.granite.tide.data.DirtyCheckContext
Entity manager is dirty when any entity/collection/map has been modified
dirty — Property in class org.granite.tide.data.EntityManager
Entity manager is dirty when any entity/collection/map has been modified
dirty — Property in class org.granite.tide.data.events.DirtyChangeEvent
DIRTY_CHANGE — Constant static property in class org.granite.tide.data.events.DirtyChangeEvent
DirtyChangeEvent — Class in package org.granite.tide.data.events
DirtyChangeEvent(object, dirty) — Constructor in class org.granite.tide.data.events.DirtyChangeEvent
DirtyCheckContext — Class in package org.granite.tide.data
DirtyCheckContext handles dirty checking of managed entities
DirtyCheckContext(context:org.granite.tide:BaseContext) — Constructor in class org.granite.tide.data.DirtyCheckContext
dirtyCheckEnabled — Property in class org.granite.tide.data.EntityManager
Enables or disabled dirty checking in this context
disconnected — Property in class org.granite.tide.Tide
dispatchEvent(event) — Method in class org.granite.collections.BasicMap
dispatchEvent(event) — Method in class org.granite.rpc.remoting.mxml.SecureRemoteObject
dispatchEvent(event) — Method in class org.granite.tide.BaseContext
Dispatches a context event
dispatchEvent(event) — Method in class org.granite.tide.Subcontext
Dispatch a context event in the current subcontext
dispatchEvent(event) — Method in class org.granite.tide.collections.PagedCollection
dispatchEvent(event) — Method in class org.granite.tide.impl.ContextEventDispatcher
dispatchEvents — Property in class org.granite.validation.ValidatorFactory
Should the validation process dispatch validation events? Default is true.
dispatchReplaceOnResult — Property in class org.granite.tide.collections.PagedCollection
dispatchResetOnInit — Property in class org.granite.tide.collections.PagedCollection
divide(b, ... rest) — Method in class org.granite.math.BigDecimal
Returns a BigDecimal whose value is (this / b).
divide(b) — Method in class org.granite.math.BigInteger
Returns a BigInteger whose value is (this / b).
divide(b) — Method in class org.granite.math.Long
Returns a Long whose value is (this / b).
divideAndRemainder(b, mc:org.granite.math:MathContext) — Method in class org.granite.math.BigDecimal
Returns a two-element BigDecimal array containing the result of divideToIntegralValue followed by the result of remainder on the two operands calculated with rounding according to the context settings.
divideAndRemainder(b) — Method in class org.granite.math.BigInteger
Returns an array of two BigInteger containing (this / b) followed by (this % b).
divideAndRemainder(b) — Method in class org.granite.math.Long
Returns an array of two Long containing (this / b) followed by (this % b).
divideToIntegralValue(b, mc:org.granite.math:MathContext) — Method in class org.granite.math.BigDecimal
Returns a BigDecimal whose value is the integer part of (this / b).
doAuthenticate() — Method in class org.granite.gravity.TopicMessageAgent
doFind(filter, first, max, sort, findResponder) — Method in class org.granite.tide.collections.PagedQuery
doFind(filter, first, max, sort, findResponder) — Method in class org.granite.tide.spring.PagedQuery
domain — Property in class org.granite.reflect.Type
The underlying ApplicationDomain instance associated to this Type.
DOTALL — Constant static property in class org.granite.validation.constraints.Pattern
Enables dotall mode (see java.util.regex.Pattern#DOTALL).
doValidation(value) — Method in class org.granite.tide.seam.validators.TideControlValidator
doValidation(value) — Method in class org.granite.tide.validators.TideEntityValidator
doValidation(value) — Method in class org.granite.tide.validators.TideInputValidator
doValidation(value) — Method in class org.granite.validation.FormValidator
doValidation(value) — Method in class org.granite.validators.CompareStringValidator
DOWN — Constant static property in class org.granite.math.RoundingMode
Rounding mode to round towards zero.
DynamicProperty — Class in package org.granite.reflect
Represents a dynamic propert of a given Type instance.
DynamicProperty(holder, key, getter, setter) — Constructor in class org.granite.reflect.DynamicProperty
Constructs a new DynamicProperty instance.
DynamicServiceInitializer — Class in package org.granite.tide.service
DynamicServiceInitializer(configUrl) — Constructor in class org.granite.tide.service.DynamicServiceInitializer
Tide constructor used at component instantiation
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z