패키지 | com.adobe.icc.editors.model |
클래스 | public class AssetModel |
상속 | AssetModel EventDispatcher Object |
하위 클래스 | FragmentLayoutModel, LayoutModel, LetterModel, ModuleModel |
언어 버전: | ActionScript 3.0 |
제품 버전: | Asset Composer Building Block 9.5 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
This class is supposedly abstract and should not be instantiated as is.
To work on a particular asset, its corresponding domain model class must
be used e.g. TextModel
, LayoutModel
etc.
It contains several properties and methods pulled up from the concrete classes. In case, a new asset is introduced in the system and a domain class needs to be written for it, this class should be extended even though it's not mandatory.
속성 | 정의 주체 | ||
---|---|---|---|
activeEndDate : Date
The activeEndDate of the underlying value object. | AssetModel | ||
activeStartDate : Date
The activeStartDate date of the underlying value object. | AssetModel | ||
category : Category
The Category of the underlying value object. | AssetModel | ||
comment : String
The comment of the underlying value object. | AssetModel | ||
constructor : Object
지정된 객체 인스턴스의 클래스 객체 또는 생성자 함수에 대한 참조입니다. | Object | ||
crxVersion : String
The crx version of the underlying value object. | AssetModel | ||
description : String
The description of the underlying value object. | AssetModel | ||
extendedProperties : Object
The extended properties of the underlying value object. | AssetModel | ||
id : String
The GUID of the underlying value object. | AssetModel | ||
isNew : Boolean
Indicates if this Asset is new. | AssetModel | ||
lastChangeBy : String
The lastChangeBy property of the underlying value object. | AssetModel | ||
name : String
The name of the underlying value object. | AssetModel | ||
state : int
The state of the underlying value object. | AssetModel | ||
subCategory : Category
The Sub-Category of the underlying value object. | AssetModel | ||
version : int
The version of the underlying value object. | AssetModel | ||
vo : *
The value object which this asset domain object is built atop. | AssetModel |
속성 | 정의 주체 | ||
---|---|---|---|
isCopy : Boolean
Indicates that the object is a copy of an existing Asset. | AssetModel | ||
oldId : String
Id of the Asset which was cloned to create this copy. | AssetModel | ||
preferencesManager : PreferencesManager
To manage user preferences for category, subcategory and data dictionary. | AssetModel |
메서드 | 정의 주체 | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
리스너에서 이벤트 알림을 받을 수 있도록 EventDispatcher 객체에 이벤트 리스너 객체를 등록합니다. | EventDispatcher | ||
이벤트를 이벤트 흐름으로 전달합니다. | EventDispatcher | ||
EventDispatcher 객체에 특정 유형의 이벤트에 대한 리스너가 등록되어 있는지 여부를 확인합니다. | EventDispatcher | ||
지정된 속성이 객체에 정의되어 있는지 여부를 나타냅니다. | Object | ||
Object 클래스의 인스턴스가 매개 변수로 지정된 객체의 프로토타입 체인에 있는지 여부를 나타냅니다. | Object | ||
지정된 속성이 존재하고 열거 가능한지 여부를 나타냅니다. | Object | ||
EventDispatcher 객체에서 리스너를 제거합니다. | EventDispatcher | ||
Saves the user edits for any asset. | AssetModel | ||
루프 작업에서 동적 속성을 사용할 수 있는지 여부를 설정합니다. | Object | ||
로캘별 규칙에 따라 서식이 지정된 이 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 프리미티브 값을 반환합니다. | Object | ||
이 EventDispatcher 객체 또는 조상 객체에 지정한 이벤트 유형에 대한 이벤트 리스너가 등록되어 있는지 여부를 확인합니다. | EventDispatcher |
이벤트 | 요약 | 정의 주체 | ||
---|---|---|---|---|
[브로드캐스트 이벤트] Flash Player 또는 AIR 응용 프로그램이 운영 체제 포커스를 얻어 활성화될 때 전달됩니다. | EventDispatcher | |||
[브로드캐스트 이벤트] Flash Player 또는 AIR 응용 프로그램이 운영 체제 포커스를 잃고 비활성화될 때 전달됩니다. | EventDispatcher | |||
Dispatched when this Asset is completely fetched from the server. | AssetModel |
activeEndDate | 속성 |
activeEndDate:Date
언어 버전: | ActionScript 3.0 |
제품 버전: | Asset Composer Building Block 9.5 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The activeEndDate of the underlying value object.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 fetchComplete
이벤트를 전달합니다.
구현
public function get activeEndDate():Date
public function set activeEndDate(value:Date):void
activeStartDate | 속성 |
activeStartDate:Date
언어 버전: | ActionScript 3.0 |
제품 버전: | Asset Composer Building Block 9.5 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The activeStartDate date of the underlying value object.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 fetchComplete
이벤트를 전달합니다.
구현
public function get activeStartDate():Date
public function set activeStartDate(value:Date):void
category | 속성 |
category:Category
언어 버전: | ActionScript 3.0 |
제품 버전: | Asset Composer Building Block 9.5 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The Category of the underlying value object.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 categoryChange
이벤트를 전달합니다.
구현
public function get category():Category
public function set category(value:Category):void
comment | 속성 |
comment:String
언어 버전: | ActionScript 3.0 |
제품 버전: | Asset Composer Building Block 9.5 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The comment of the underlying value object.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 fetchComplete
이벤트를 전달합니다.
구현
public function get comment():String
public function set comment(value:String):void
crxVersion | 속성 |
crxVersion:String
언어 버전: | ActionScript 3.0 |
제품 버전: | Asset Composer Building Block 10 |
런타임 버전: | AIR (unsupported), Flash Player 10.2 |
The crx version of the underlying value object.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 fetchComplete
이벤트를 전달합니다.
구현
public function get crxVersion():String
public function set crxVersion(value:String):void
description | 속성 |
description:String
언어 버전: | ActionScript 3.0 |
제품 버전: | Asset Composer Building Block 9.5 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The description of the underlying value object.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 fetchComplete
이벤트를 전달합니다.
구현
public function get description():String
public function set description(value:String):void
extendedProperties | 속성 |
extendedProperties:Object
언어 버전: | ActionScript 3.0 |
제품 버전: | Asset Composer Building Block 10 |
런타임 버전: | AIR (unsupported), Flash Player 10.2 |
The extended properties of the underlying value object.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 extendedPropertiesChange
이벤트를 전달합니다.
구현
public function get extendedProperties():Object
public function set extendedProperties(value:Object):void
id | 속성 |
id:String
언어 버전: | ActionScript 3.0 |
제품 버전: | Asset Composer Building Block 9.5 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The GUID of the underlying value object.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 fetchComplete
이벤트를 전달합니다.
구현
public function get id():String
public function set id(value:String):void
isCopy | 속성 |
protected var isCopy:Boolean
언어 버전: | ActionScript 3.0 |
제품 버전: | Asset Composer Building Block 9.5 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Indicates that the object is a copy of an existing Asset.
isNew | 속성 |
public var isNew:Boolean
언어 버전: | ActionScript 3.0 |
제품 버전: | Asset Composer Building Block 9.5 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Indicates if this Asset is new. New Asset objects are existent purely on the client side until they are saved.
lastChangeBy | 속성 |
lastChangeBy:String
언어 버전: | ActionScript 3.0 |
제품 버전: | Asset Composer Building Block 9.5 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The lastChangeBy property of the underlying value object.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 fetchComplete
이벤트를 전달합니다.
구현
public function get lastChangeBy():String
public function set lastChangeBy(value:String):void
name | 속성 |
name:String
언어 버전: | ActionScript 3.0 |
제품 버전: | Asset Composer Building Block 9.5 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The name of the underlying value object.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 fetchComplete
이벤트를 전달합니다.
구현
public function get name():String
public function set name(value:String):void
oldId | 속성 |
protected var oldId:String
언어 버전: | ActionScript 3.0 |
제품 버전: | Asset Composer Building Block 9.5 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Id of the Asset which was cloned to create this copy. This is applicable only when this Asset is a copy of an existing Asset.
preferencesManager | 속성 |
protected var preferencesManager:PreferencesManager
언어 버전: | ActionScript 3.0 |
제품 버전: | Asset Composer Building Block 9.5 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
To manage user preferences for category, subcategory and data dictionary.
state | 속성 |
state:int
언어 버전: | ActionScript 3.0 |
제품 버전: | Asset Composer Building Block 9.5 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The state of the underlying value object.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 fetchComplete
이벤트를 전달합니다.
구현
public function get state():int
public function set state(value:int):void
subCategory | 속성 |
subCategory:Category
언어 버전: | ActionScript 3.0 |
제품 버전: | Asset Composer Building Block 9.5 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The Sub-Category of the underlying value object.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 categoryChange
이벤트를 전달합니다.
구현
public function get subCategory():Category
public function set subCategory(value:Category):void
version | 속성 |
version:int
언어 버전: | ActionScript 3.0 |
제품 버전: | Asset Composer Building Block 9.5 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The version of the underlying value object.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 fetchComplete
이벤트를 전달합니다.
구현
public function get version():int
public function set version(value:int):void
vo | 속성 |
vo:*
언어 버전: | ActionScript 3.0 |
제품 버전: | Asset Composer Building Block 9.5 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The value object which this asset domain object is built atop. The type of the value object corresponds to the type of the domain object.
이 속성은 데이터 바인딩에 대한 소스로 사용할 수 있습니다. 이 속성을 수정하면 valueObjectChange
이벤트를 전달합니다.
구현
public function get vo():*
public function set vo(value:any):void
save | () | 메서드 |
public function save():void
언어 버전: | ActionScript 3.0 |
제품 버전: | Asset Composer Building Block 10 |
런타임 버전: | AIR (unsupported), Flash Player 10.2 |
Saves the user edits for any asset.
fetchComplete | 이벤트 |
flash.events.Event
속성 Event.type =
flash.events.Event
언어 버전: | ActionScript 3.0 |
제품 버전: | Asset Composer Building Block 10 |
런타임 버전: | AIR (unsupported), Flash Player 10.2 |
Dispatched when this Asset is completely fetched from the server. Assets are often kept shallow in the Asset Manager and fetched completely only when necessary. The fetchComplete event is dispatched when the Asset has been retrieved completely from the server.
Tue Jun 12 2018, 03:17 PM Z