Pacote | lc.foundation |
Interface | public interface IPreferencesManager extends IManager , IEventDispatcher |
Implementadores | PreferencesManager |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versões de runtime: | 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.
Propriedades públicas
Métodos públicos
Método | Definido por | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra um objeto de ouvinte de evento em um objeto EventDispatcher, de forma que o ouvinte receba a notificação de um evento. | IEventDispatcher | ||
Envia um evento para o fluxo de eventos. | 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 | ||
Verifica se o objeto EventDispatcher tem ouvintes registrados para um tipo específico de evento. | IEventDispatcher | ||
Loads all preferences into the manager. | IPreferencesManager | ||
Remove um ouvinte do objeto EventDispatcher. | IEventDispatcher | ||
Set the value of the preference with the provided name. | IPreferencesManager | ||
Verifica se um ouvinte de evento está registrado nesse objeto EventDispatcher ou em qualquer um de seus ancestrais para o tipo de evento especificado. | IEventDispatcher |
Detalhes do método
getPreferencesStartingWith | () | método |
public function getPreferencesStartingWith(namePrefix:String):ListCollectionView
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Get a list of all preferences starting with a provided prefix.
Parâmetros
namePrefix:String — preference prefix.
|
ListCollectionView — A list of all preferences starting with a provided prefix.
|
getPreferenceValue | () | método |
public function getPreferenceValue(name:String):Object
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Get the value of the preference with the provided name.
Parâmetros
name:String — preference name.
|
Object — The value of the preference with the provided name.
|
preferencesLoad | () | método |
public function preferencesLoad(types:String):lc.foundation.util:Token
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versões de runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Loads all preferences into the manager.
Parâmetros
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étodo |
public function setPreferenceValue(name:String, value:Object):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Versões de runtime: | 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.
Parâmetros
name:String — The name of preference.
| |
value:Object — The value of the preference.
|
Wed Jun 13 2018, 11:10 AM Z