Package | com.adobe.ep.ux.content.event |
Classe | public class RelationEvent |
Héritage | RelationEvent Event Object |
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versions du moteur d’exécution: | Flash Player 10.2, AIR (unsupported) |
Propriété | Défini par | ||
---|---|---|---|
assetDescriptor : com.adobe.ep.ux.content.model.asset:AssetTypeDescriptor
Asset Type Descriptor for the above asset. | RelationEvent | ||
assetVO : Object
The Asset whose dependencies/relations are being searched for. | RelationEvent | ||
bubbles : Boolean [lecture seule]
Indique si un événement peut se propager vers le haut (bubbling). | Event | ||
cancelable : Boolean [lecture seule]
Indique si le comportement associé à l’événement peut être évité. | Event | ||
constructor : Object
Référence à l’objet de classe ou à la fonction constructeur d’une occurrence donnée d’un objet. | Object | ||
currentTarget : Object [lecture seule]
L’objet qui traite activement l’objet Event avec un écouteur d’événements. | Event | ||
eventPhase : uint [lecture seule]
Phase actuelle du flux d’événements. | Event | ||
hasModifiedDependency : Boolean
A boolean flag that can be set if relationships have modified dependency as well. | RelationEvent | ||
relationsList : IList
The List of Relations based on which Search is performed. | RelationEvent | ||
resultsCollection : ListCollectionView
The list of Results. | RelationEvent | ||
target : Object [lecture seule]
Cible de l’événement. | Event | ||
type : String [lecture seule]
Type d’événement. | Event |
Méthode | Défini par | ||
---|---|---|---|
RelationEvent(type:String, assetVO:Object, assetDesc:com.adobe.ep.ux.content.model.asset:AssetTypeDescriptor, relationsList:IList, resultsColl:ListCollectionView, hasModifiedDependency:Boolean = false, bubbles:Boolean = false, cancelable:Boolean = false)
Constructor. | RelationEvent | ||
Duplique une occurrence d’une sous-classe Event. | Event | ||
Fonction d’un utilitaire permettant d’implémenter la méthode toString() dans des classes Event ActionScript 3.0 personnalisées. | Event | ||
Indique si la propriété spécifiée d’un objet est définie. | Object | ||
Vérifie si la méthode preventDefault() a été appelée pour l’événement. | Event | ||
Indique si une occurrence de la classe Object figure dans la chaîne de prototype de l’objet spécifié en tant que paramètre. | Object | ||
Annule le comportement par défaut d’un événement si cette opération est possible. | Event | ||
Indique si la propriété spécifiée existe et est énumérable. | Object | ||
Définit la disponibilité d’une propriété dynamique pour les opérations en boucle. | Object | ||
Bloque le traitement des écouteurs d’événement dans le nœud actuel et les suivants dans le flux d’événements. | Event | ||
Bloque le traitement des écouteurs d’événement dans les nœuds qui suivent le nœud actuel dans le flux d’événements. | Event | ||
Renvoie la représentation de chaîne de cet objet, formatée selon les paramètres régionaux en vigueur. | Object | ||
Renvoie une chaîne répertoriant toutes les propriétés de l’objet Event. | Event | ||
Renvoie la valeur primitive de l’objet spécifié. | Object |
Constante | Défini par | ||
---|---|---|---|
GET_ALL_DEPENDENCIES_SEARCH : String = "getAllDependenciesSearch" [statique]
Event string informing about all the assets which are related to an asset
either as a related dependency or contained dependency. | RelationEvent | ||
GET_CONTAINED_ASSETS_SEARCH : String = "getContainedAssetsSearch" [statique]
Event string informing about contained assets. | RelationEvent | ||
GET_RELATED_ASSETS_SEARCH : String = "getRelatedAssetsSearch" [statique]
Event string informing about related assets. | RelationEvent |
assetDescriptor | propriété |
public var assetDescriptor:com.adobe.ep.ux.content.model.asset:AssetTypeDescriptor
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versions du moteur d’exécution: | Flash Player 10.2, AIR (unsupported) |
Asset Type Descriptor for the above asset.
assetVO | propriété |
public var assetVO:Object
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versions du moteur d’exécution: | Flash Player 10.2, AIR (unsupported) |
The Asset whose dependencies/relations are being searched for.
hasModifiedDependency | propriété |
public var hasModifiedDependency:Boolean
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versions du moteur d’exécution: | Flash Player 10.2, AIR (unsupported) |
A boolean flag that can be set if relationships have modified dependency as well. This flag is used by Publish Dependencies browser.
relationsList | propriété |
public var relationsList:IList
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versions du moteur d’exécution: | Flash Player 10.2, AIR (unsupported) |
The List of Relations based on which Search is performed.
resultsCollection | propriété |
public var resultsCollection:ListCollectionView
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versions du moteur d’exécution: | Flash Player 10.2, AIR (unsupported) |
The list of Results.
RelationEvent | () | Constructeur |
public function RelationEvent(type:String, assetVO:Object, assetDesc:com.adobe.ep.ux.content.model.asset:AssetTypeDescriptor, relationsList:IList, resultsColl:ListCollectionView, hasModifiedDependency:Boolean = false, bubbles:Boolean = false, cancelable:Boolean = false)
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versions du moteur d’exécution: | Flash Player 10.2, AIR (unsupported) |
Constructor.
Paramètrestype:String — Specifies the type of event.
| |
assetVO:Object — Specifies the Asset whose dependencies or relations are being searched for.
| |
assetDesc:com.adobe.ep.ux.content.model.asset:AssetTypeDescriptor — Asset Specifies the type Descriptor for the asset, which is specifies by the assetVO property.
| |
relationsList:IList — Specifies the list of relations based on which the search is performed.
| |
resultsColl:ListCollectionView — Specifies the list of results.
| |
hasModifiedDependency:Boolean (default = false ) — Specifies a boolean flag that can be set if relationships have modified dependency as well. This flag is
used by Publish Dependencies browser.
| |
bubbles:Boolean (default = false ) — Specifies whether the event can bubble up the display
list hierarchy.
| |
cancelable:Boolean (default = false ) — Indicates whether the behavior associated with the
event can be prevented.
|
GET_ALL_DEPENDENCIES_SEARCH | Constante |
public static const GET_ALL_DEPENDENCIES_SEARCH:String = "getAllDependenciesSearch"
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versions du moteur d’exécution: | Flash Player 10.2, AIR (unsupported) |
Event string informing about all the assets which are related to an asset either as a related dependency or contained dependency. This is used by Publish Dependencies browser.
GET_CONTAINED_ASSETS_SEARCH | Constante |
public static const GET_CONTAINED_ASSETS_SEARCH:String = "getContainedAssetsSearch"
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versions du moteur d’exécution: | Flash Player 10.2, AIR (unsupported) |
Event string informing about contained assets. Contained Assets refer to the assets which are referred by the asset whose relationships are being obtained. This is used by Relationship browser.
GET_RELATED_ASSETS_SEARCH | Constante |
public static const GET_RELATED_ASSETS_SEARCH:String = "getRelatedAssetsSearch"
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versions du moteur d’exécution: | Flash Player 10.2, AIR (unsupported) |
Event string informing about related assets. Related Assets are those assets which use the asset whose relationships are being obtained. This is used by Relationship browser.
Tue Jun 12 2018, 09:30 AM Z