Pakket | mx.resources |
Klasse | public class ResourceBundle |
Overerving | ResourceBundle Object |
Implementatie | IResourceBundle |
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
A Flex application typically has multiple instances of this class, all managed by a single instance of the ResourceManager class. It is possible to have ResourceBundle instances for multiple locales, one for each locale. There can be multiple ResourceBundle instances with different bundle names.
Meer voorbeelden
Verwante API-elementen
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
bundleName : String [alleen-lezen]
A name that identifies this resource bundle,
such as "MyResources". | ResourceBundle | ||
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | ||
content : Object [alleen-lezen]
An object containing key-value pairs for the resources
in this resource bundle. | ResourceBundle | ||
locale : String [alleen-lezen]
The locale for which this bundle's resources have been localized. | ResourceBundle |
Methode | Gedefinieerd door | ||
---|---|---|---|
Constructor. | ResourceBundle | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeksrepresentatie van het opgegeven object. | Object | ||
Retourneert de primitieve waarde van het opgegeven object. | Object |
Methode | Gedefinieerd door | ||
---|---|---|---|
When a properties file is compiled into a resource bundle,
the MXML compiler autogenerates a subclass of ResourceBundle. | ResourceBundle |
bundleName | eigenschap |
bundleName:String
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
A name that identifies this resource bundle,
such as "MyResources"
.
This read-only property is set when a resource bundle is constructed.
Resource bundles that are automatically created from compiled
properties files have bundle names based on the names of those files.
For example, a properties file named MyResources.properties
will produce a resource bundle whose bundleName
is "MyResources"
.
The ResourceManager can manage multiple bundles with the same
bundleName
as long as they have different values
for their locale
property.
Implementatie
public function get bundleName():String
content | eigenschap |
content:Object
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
An object containing key-value pairs for the resources in this resource bundle.
In general, you should access resources by using IResourceManager
methods such as getString()
, rather than directly
accessing them in a resource bundle.
However, if you are programmatically creating your own
resource bundles, you can initialize them with resources,
as follows:
var rb:IResourceBundle = new ResourceBundle("fr_FR", "MyResources"); rb.content["LANGUAGE"] = "Francais"; rb.content["GREETING"] = "Bonjour";
When a resource bundle is produced by compiling a properties file, its resource values are either of type String or Class. For example, if the properties file contains
LANGUAGE=English MINIMUM_AGE=18 ENABLED=true LOGO=Embed("logo.png")
then the value of the LANGUAGE
resource
is the String "English"
,
the value of the MINIMUM_AGE
resource
is the String "18"
,
the value of the ENABLED
resource
is the String "true"
,
and the value of the LOGO
resource
is a Class that represents the embedded PNG file.
You can use IResourceManager methods such as getInt()
and getBoolean()
to convert resource strings like
"18"
and "true"
into the type
that your code expects.
Implementatie
public function get content():Object
locale | eigenschap |
locale:String
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
The locale for which this bundle's resources have been localized.
This is a String such as "en_US"
for U.S. English.
This read-only property is set when a resource bundle is constructed.
Resource bundles that are automatically created from compiled
properties files have locales based on the
-compiler.locale
option of the mxmlc or compc compilers.
For example, suppose that you compile your application with the option
-compiler.locale=en_US,ja_JP
and that you have specified
-compiler.source-path=resources/{locale}
so that
your application's resources, located in
resources/en_US/MyResources.properties and
resources/ja_JP/MyResources.properties, are found.
Then your application will have two resource bundles
whose bundleName
is "MyResources"
,
one whose locale
is "en_US"
and one whose locale
is "ja_JP"
.
Implementatie
public function get locale():String
ResourceBundle | () | Constructor |
public function ResourceBundle(locale:String = null, bundleName:String = null)
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Constructor.
Parameterslocale:String (default = null ) — A locale string, such as "en_US" .
| |
bundleName:String (default = null ) — A name that identifies this bundle,
such as "MyResources" .
|
getContent | () | methode |
protected function getContent():Object
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
When a properties file is compiled into a resource bundle, the MXML compiler autogenerates a subclass of ResourceBundle. The subclass overrides this method to return an Object that contains key-value pairs for the bundle's resources.
If you create your own ResourceBundle instances,
you can set the key-value pairs on the content
object.
Object — The Object that contains key-value pairs for the bundle's resources.
|
Wed Jun 13 2018, 11:42 AM Z