包 | com.adobe.gravity.init |
类 | public class GravityInit |
继承 | GravityInit Object |
实现 | ILogger |
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
运行时版本: | AIR 1.1, Flash Player 9 |
公共方法
方法 | 由以下参数定义 | ||
---|---|---|---|
Constructor. | GravityInit | ||
表示对象是否已经定义了指定的属性。 | Object | ||
Determine whether a message will be logged. | GravityInit | ||
表示 Object 类的实例是否在指定为参数的对象的原型链中。 | Object | ||
log(level:int, timestamp:Date, sequence:Number, loggerName:String, message:String, params:Object, actor:Object, error:Error):void
Log a message. | GravityInit | ||
表示指定的属性是否存在、是否可枚举。 | Object | ||
设置循环操作动态属性的可用性。 | Object | ||
返回此对象的字符串表示形式,其格式设置遵守区域设置特定的约定。 | Object | ||
返回指定对象的字符串表示形式。 | Object | ||
返回指定对象的原始值。 | Object |
构造函数详细信息
GravityInit | () | 构造函数 |
public function GravityInit(gravityBootstrapper:GravityBootstrap, gravityCoreBytes:Class)
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
运行时版本: | AIR 1.1, Flash Player 9 |
Constructor.
参数gravityBootstrapper:GravityBootstrap — Specifies the GravityBootstrap root content object.
| |
gravityCoreBytes:Class — Specifies a class containing the embedded Client Component Framework core SWF file.
|
方法详细信息
isLoggable | () | 方法 |
public function isLoggable(level:int, loggerName:String):Boolean
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
运行时版本: | AIR 1.1, Flash Player 9 |
Determine whether a message will be logged.
参数
level:int — The logging level of the message.
| |
loggerName:String — The name of the logger to which the message is to be logged.
|
Boolean — true if the message will be logged, false otherwise.
|
log | () | 方法 |
public function log(level:int, timestamp:Date, sequence:Number, loggerName:String, message:String, params:Object, actor:Object, error:Error):void
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
运行时版本: | AIR 1.1, Flash Player 9 |
Log a message.
参数
level:int — The logging level for the message, for example LogLevel.INFO.
| |
timestamp:Date — The timestamp for the logged event.
| |
sequence:Number — A sequence number for absolutely ordering log events, should be computed via Sequence.next().
| |
loggerName:String — The name of the logger. Used for log filtering.
| |
message:String — The log message, will be formatted with FormatMessage.formatString using the provided params object as parameters.
| |
params:Object — Any parameters associated with this message. Used to format the message with FormatMessage.formatString, but also useful to provide additional context for the message. Can be null if there are no parameters.
| |
actor:Object — The originating object for the log message. Used by some loggers to differentiate messages generated by different instances of a class. Can be null if there is no obvious actor.
| |
error:Error — If the message relates to an error, the Error object can be provided. Can be null if there is no associated error object.
|
Tue Jun 12 2018, 11:04 AM Z