패키지 | 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, 03:17 PM Z