Package | lc.foundation |
Interface | public interface IPreferencesManager extends IManager , IEventDispatcher |
Implémenteurs | PreferencesManager |
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
IPreferencesManager
interface is implemented
to manage the various preferences that the user has access to.
Implement the IPreferencesManager
interface to retrieve a list of preferences that a user can
set or change.
Preferences that start with "/"
are system properties
and cannot be modified; Preferences that do not start with
"/"
are user properties and can be modified.
Propriétés publiques
Méthodes publiques
Méthode | Défini par | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Enregistre un objet écouteur d’événement auprès d’un objet EventDispatcher afin que l’écouteur soit averti d’un événement. | IEventDispatcher | ||
Distribue un événement dans le flux d’événements. | IEventDispatcher | ||
Get a list of all preferences starting with a provided prefix. | IPreferencesManager | ||
Get the value of the preference with the provided name. | IPreferencesManager | ||
Determines whether the default operation is prevented. | IManager | ||
Determines whether the default operation is prevented. | IManager | ||
Vérifie si des écouteurs sont enregistrés auprès de l’objet EventDispatcher pour un type spécifique d’événement. | IEventDispatcher | ||
Loads all preferences into the manager. | IPreferencesManager | ||
Supprime un écouteur de l’objet EventDispatcher. | IEventDispatcher | ||
Set the value of the preference with the provided name. | IPreferencesManager | ||
Vérifie si un écouteur d’événement est enregistré auprès de cet objet EventDispatcher ou de ses ancêtres pour le type d’événement spécifié. | IEventDispatcher |
Détails de la méthode
getPreferencesStartingWith | () | méthode |
public function getPreferencesStartingWith(namePrefix:String):ListCollectionView
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Get a list of all preferences starting with a provided prefix.
Paramètres
namePrefix:String — preference prefix.
|
ListCollectionView — A list of all preferences starting with a provided prefix.
|
getPreferenceValue | () | méthode |
public function getPreferenceValue(name:String):Object
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Get the value of the preference with the provided name.
Paramètres
name:String — preference name.
|
Object — The value of the preference with the provided name.
|
preferencesLoad | () | méthode |
public function preferencesLoad(types:String):lc.foundation.util:Token
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Loads all preferences into the manager.
Paramètres
types:String — Specifies the preferences to load. (Not implemented)
|
lc.foundation.util:Token — A token used to set result and fault handlers that execute when the operation completes.
|
setPreferenceValue | () | méthode |
public function setPreferenceValue(name:String, value:Object):void
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versions du moteur d’exécution: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Set the value of the preference with the provided name. Attempting to set the value of a system preference will be silently ignored.
Paramètres
name:String — The name of preference.
| |
value:Object — The value of the preference.
|
Tue Jun 12 2018, 09:30 AM Z