| Package | org.springextensions.actionscript.security |
| SVN browsing | AccessStrategy.as |
| Fisheye | AccessStrategy.as |
| Class | public final class AccessStrategy |
| Property | Defined by | ||
|---|---|---|---|
| name : String [read-only]
Returns the name of the access strategy.
| AccessStrategy | ||
| Method | Defined by | ||
|---|---|---|---|
|
AccessStrategy(name:String)
Creates a new
AccessStrategy object. | AccessStrategy | ||
|
fromName(name:String):AccessStrategy
[static]
Retunrs a
AccessStrategy if an instance with the specified name exists. | AccessStrategy | ||
|
toString():String
Returns a string representation of the current
AccessStrategy
| AccessStrategy | ||
| Constant | Defined by | ||
|---|---|---|---|
| EDITABLE : AccessStrategy
[static]
Determines that the
editable property will be used to restrict access to a component. | AccessStrategy | ||
| ENABLED : AccessStrategy
[static]
Determines that the
enabled property will be used to restrict access to a component. | AccessStrategy | ||
| HIDE : AccessStrategy
[static]
Determines that the
visible and includeInLayout properties will be used to restrict access to a component. | AccessStrategy | ||
| VISIBLE : AccessStrategy
[static]
Determines that the
visible property will be used to restrict access to a component. | AccessStrategy | ||
| name | property |
name:String [read-only]Returns the name of the access strategy.
Implementation public function get name():String
| AccessStrategy | () | constructor |
public function AccessStrategy(name:String)
Creates a new AccessStrategy object.
This constructor is only used internally to set up the enum and all external
calls will fail.
name:String — the name of the scope
|
| fromName | () | method |
public static function fromName(name:String):AccessStrategy
Retunrs a AccessStrategy if an instance with the specified name exists.
name:String |
AccessStrategy |
| toString | () | method |
public function toString():String
Returns a string representation of the current AccessStrategy
String — the string representation
|
| EDITABLE | constant |
public static const EDITABLE:AccessStrategy
Determines that the editable property will be used to restrict access to a component.
| ENABLED | constant |
public static const ENABLED:AccessStrategy
Determines that the enabled property will be used to restrict access to a component.
| HIDE | constant |
public static const HIDE:AccessStrategy
Determines that the visible and includeInLayout properties will be used to restrict access to a component.
| VISIBLE | constant |
public static const VISIBLE:AccessStrategy
Determines that the visible property will be used to restrict access to a component.