| Package | com.esri.aws.awx.widget |
| Interface | public interface IWidget extends flash.events.IEventDispatcher |
| Implementors | BarWidgetContainer, BaseWidget, BaseWidgetContainer, IconWidgetView, WidgetLoader |
| Property | Defined by | ||
|---|---|---|---|
| artifactID : String [read-only]
The widget's artifactID.
| IWidget | ||
| author : String [read-only]
The widget author.
| IWidget | ||
| description : String [read-only]
The widget description.
| IWidget | ||
| groupID : String [read-only]
The widget's groupID.
| IWidget | ||
| link : String [read-only]
A link to the widget web site.
| IWidget | ||
| name : String [read-only]
The widget name.
| IWidget | ||
| version : String [read-only]
The widget's version.
| IWidget | ||
| widgetStates : Array [read-only]
The supported states of this widget.
| IWidget | ||
| Method | Defined by | ||
|---|---|---|---|
|
createWidgetView(widgetState:String):IWidgetView
Creates a widget view for a given state.
| IWidget | ||
|
loadProperty(name:String, defaultValue:Object = null):Object
Loads a property from this widget module's SharedObject.
| IWidget | ||
|
storeProperty(name:String, value:Object):void
Stores properties to this widget module's SharedObject.
| IWidget | ||
| artifactID | property |
artifactID:String [read-only]The widget's artifactID.
Implementation public function get artifactID():String
| author | property |
author:String [read-only]The widget author.
Implementation public function get author():String
| description | property |
description:String [read-only]The widget description.
Implementation public function get description():String
| groupID | property |
groupID:String [read-only]The widget's groupID.
Implementation public function get groupID():String
| link | property |
link:String [read-only]A link to the widget web site.
Implementation public function get link():String
| name | property |
name:String [read-only]The widget name.
Implementation public function get name():String
| version | property |
version:String [read-only]The widget's version.
Implementation public function get version():String
| widgetStates | property |
widgetStates:Array [read-only]The supported states of this widget.
Implementation public function get widgetStates():Array
| createWidgetView | () | method |
public function createWidgetView(widgetState:String):IWidgetViewCreates a widget view for a given state.
ParameterswidgetState:String |
IWidgetView —
The widget view.
|
| loadProperty | () | method |
public function loadProperty(name:String, defaultValue:Object = null):ObjectLoads a property from this widget module's SharedObject.
Parametersname:String — the name of the property to be loaded.
|
|
defaultValue:Object (default = null) — an optional default value.
|
Object — The value.
|
| storeProperty | () | method |
public function storeProperty(name:String, value:Object):voidStores properties to this widget module's SharedObject.
Parametersname:String — the name of the property to be stored.
|
|
value:Object — the value of the property to be stored.
|