ActionScript® 3.0 Referenzhandbuch für die Adobe® Flash®-Plattform
Home  |  Liste der Pakete und Klassen ausblenden |  Pakete  |  Klassen  |  Neue Funktionen  |  Stichwortverzeichnis  |  Anhänge  |  Warum auf Englisch?
Filter: Daten werden vom Server abgerufen...
Daten werden vom Server abgerufen...
com.adobe.icc.services.module 

IModuleService  - AS3 Asset Composer

Paketcom.adobe.icc.services.module
Schnittstellepublic interface IModuleService extends IEventDispatcher

Sprachversion: ActionScript 3.0
Produktversion: Baustein „Asset Composer“ 9.5
Laufzeitversionen: AIR (unsupported), Flash Player 9, Flash Player 10

Defines a service for Module management.



Öffentliche Methoden
 MethodeDefiniert von
  
Activates the specified data module.
IModuleService
 Inherited
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registriert ein Ereignis-Listener-Objekt bei einem EventDispatcher-Objekt, sodass der Listener über ein Ereignis benachrichtigt wird.
IEventDispatcher
  
DESCRIPTION NEEDS REFINING! Duplicate a DataModule.
IModuleService
  
Creats a new module and persists it.
IModuleService
  
Creates a test version of the specified module.
IModuleService
  
Determines if the specified data module exists.
IModuleService
  
Deletes a data module
IModuleService
 Inherited
Sendet ein Ereignis in den Ereignisablauf.
IEventDispatcher
  
Returns a list of data modules based on a query.
IModuleService
  
Retrieves a Data Module.
IModuleService
  
Retrieves a Data Module By Version.
IModuleService
  
getDependentLetterList(moduleId:String, fetchIndirectReferences:Boolean = false):com.adobe.icc.token:IAsyncToken
Retrieve a list of letters that depend on the specified module.
IModuleService
  
Retrieve a direct list of letters that depend on the specified module.
IModuleService
  
getDependentModuleList(moduleId:String, fetchIndirectReferences:Boolean = false):com.adobe.icc.token:IAsyncToken
Retrieve a list of modules that depend on the specified module.
IModuleService
  
getDependentModules(moduleId:String, fetchIndirectReferences:Boolean = false):com.adobe.icc.token:IAsyncToken
Retrieve a list of modules that depend on the specified module.
IModuleService
  
getUsedDataModules(moduleId:String, fetchIndirectReferences:Boolean = false):com.adobe.icc.token:IAsyncToken
Retrieve the list of other modules that is used by the module identified by the given moduleID.
IModuleService
 Inherited
Überprüft, ob das EventDispatcher-Objekt Listener für einen bestimmten Ereignistyp registriert hat.
IEventDispatcher
  
Determine if the specified module is reference by some other asset (e.g.
IModuleService
  
Marks for Publish an existing module in the database.
IModuleService
  
Publishes an existing module in the database.
IModuleService
 Inherited
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
Entfernt einen Listener aus dem EventDispatcher-Objekt.
IEventDispatcher
  
Reverts the data module to the last published version.
IModuleService
  
Update an existing module in the database.
IModuleService
 Inherited
Überprüft, ob bei diesem EventDispatcher-Objekt oder bei einem seiner Vorgänger ein Ereignis-Listener für einen bestimmten Ereignistyp registriert ist.
IEventDispatcher
Methodendetails

activateDataModule

()Methode
public function activateDataModule(moduleId:String, updateDependencies:Boolean = false):com.adobe.icc.token:IAsyncToken

Sprachversion: ActionScript 3.0
Produktversion: Baustein „Asset Composer“ 9.5
Laufzeitversionen: AIR (unsupported), Flash Player 9, Flash Player 10

Activates the specified data module.

Parameter

moduleId:String — ID (GUID) of the module.
 
updateDependencies:Boolean (default = false) — Whether to replace/use this new activated version in the dependencies.

Rückgabewerte
com.adobe.icc.token:IAsyncToken — The activated DataModule object.

Auslöser
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.

copyDataModule

()Methode 
public function copyDataModule(srcModuleId:String, newModule:DataModule):com.adobe.icc.token:IAsyncToken

Sprachversion: ActionScript 3.0
Produktversion: Baustein „Asset Composer“ 9.5
Laufzeitversionen: AIR (unsupported), Flash Player 9, Flash Player 10

DESCRIPTION NEEDS REFINING! Duplicate a DataModule.

Parameter

srcModuleId:String — ID (GUID) of the source data module.
 
newModule:DataModule — The new module object.

Rückgabewerte
com.adobe.icc.token:IAsyncToken — A new DataModule which is a copy of the source data module.

Auslöser
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.

createDataModule

()Methode 
public function createDataModule(newModule:DataModule):com.adobe.icc.token:IAsyncToken

Sprachversion: ActionScript 3.0
Produktversion: Baustein „Asset Composer“ 9.5
Laufzeitversionen: AIR (unsupported), Flash Player 9, Flash Player 10

Creats a new module and persists it.

Parameter

newModule:DataModule — The new module to create/persist.

Rückgabewerte
com.adobe.icc.token:IAsyncToken — The new DataModule object that was persisted.

Auslöser
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.

createTestDataModule

()Methode 
public function createTestDataModule(moduleId:String):com.adobe.icc.token:IAsyncToken

Sprachversion: ActionScript 3.0
Produktversion: Baustein „Asset Composer“ 9.5
Laufzeitversionen: AIR (unsupported), Flash Player 9, Flash Player 10

Creates a test version of the specified module.

Parameter

moduleId:String — The ID (GUID) of the module.

Rückgabewerte
com.adobe.icc.token:IAsyncToken — The new test DataModule object.

Auslöser
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.

dataModuleExists

()Methode 
public function dataModuleExists(name:String):com.adobe.icc.token:IAsyncToken

Sprachversion: ActionScript 3.0
Produktversion: Baustein „Asset Composer“ 9.5
Laufzeitversionen: AIR (unsupported), Flash Player 9, Flash Player 10

Determines if the specified data module exists.

Parameter

name:String — Version-independent name of the data module.

Rückgabewerte
com.adobe.icc.token:IAsyncTokenBoolean which is true if the data module exists; false if not.

Auslöser
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.

deleteDataModule

()Methode 
public function deleteDataModule(moduleId:String):com.adobe.icc.token:IAsyncToken

Sprachversion: ActionScript 3.0
Produktversion: Baustein „Asset Composer“ 9.5
Laufzeitversionen: AIR (unsupported), Flash Player 9, Flash Player 10

Deletes a data module

Parameter

moduleId:String — The ID (GUID) of the module.

Rückgabewerte
com.adobe.icc.token:IAsyncToken

Auslöser
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.

getAllDataModules

()Methode 
public function getAllDataModules(query:Query = null):com.adobe.icc.token:IAsyncToken

Sprachversion: ActionScript 3.0
Produktversion: Baustein „Asset Composer“ 9.5
Laufzeitversionen: AIR (unsupported), Flash Player 9, Flash Player 10

Returns a list of data modules based on a query.

Parameter

query:Query (default = null) — Query specifying the statements for filtering search results. If null, all data modules are retrieved.

Rückgabewerte
com.adobe.icc.token:IAsyncToken — An ArrayCollection of DataModule objects.

Auslöser
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.

getDataModule

()Methode 
public function getDataModule(moduleId:String):com.adobe.icc.token:IAsyncToken

Sprachversion: ActionScript 3.0
Produktversion: Baustein „Asset Composer“ 9.5
Laufzeitversionen: AIR (unsupported), Flash Player 9, Flash Player 10

Retrieves a Data Module.

Parameter

moduleId:String — The ID (GUID) of the data module to retrieve.

Rückgabewerte
com.adobe.icc.token:IAsyncToken — A DataModule object representing the data module sought.

Auslöser
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.

getDataModuleByVersion

()Methode 
public function getDataModuleByVersion(moduleId:String, date:Date):com.adobe.icc.token:IAsyncToken

Sprachversion: ActionScript 3.0
Produktversion: Baustein „Asset Composer“ 10
Laufzeitversionen: AIR (unsupported), Flash Player 10.2

Retrieves a Data Module By Version.

Parameter

moduleId:String — The ID (GUID) of the data module to retrieve.
 
date:Date — The date at the module was published.

Rückgabewerte
com.adobe.icc.token:IAsyncToken — A DataModule object representing the data module sought.

Auslöser
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.

getDependentLetterList

()Methode 
public function getDependentLetterList(moduleId:String, fetchIndirectReferences:Boolean = false):com.adobe.icc.token:IAsyncToken

Sprachversion: ActionScript 3.0
Produktversion: Baustein „Asset Composer“ 9.5
Laufzeitversionen: AIR (unsupported), Flash Player 9, Flash Player 10

Retrieve a list of letters that depend on the specified module.

Parameter

moduleId:String — The ID (GUID) of the data module whose letter dependencies are sought.
 
fetchIndirectReferences:Boolean (default = false) — True, if you wish to fetch the Letters that directly or indirectly use this module. For example, if a Letter L1 uses a Text T1; and another Letter L2 uses List L1, which in turn uses Text T1, then the List returned would contain (L1 and L2), for the Text T1. If False, the List returned would contain only L1. (L1 and C1). If false, the List would contain only L1.

Rückgabewerte
com.adobe.icc.token:IAsyncTokenArrayCollection of Letter objects that represent the letters that depend on the specified data module.

Auslöser
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.

getDependentLetters

()Methode 
public function getDependentLetters(moduleId:String):com.adobe.icc.token:IAsyncToken

Sprachversion: ActionScript 3.0
Produktversion: Baustein „Asset Composer“ 9.5
Laufzeitversionen: AIR (unsupported), Flash Player 9, Flash Player 10

Retrieve a direct list of letters that depend on the specified module.

Parameter

moduleId:String — The ID (GUID) of the data module whose letter dependencies are sought.

Rückgabewerte
com.adobe.icc.token:IAsyncTokenArrayCollection of Letter objects that represent the letters that depend on the specified data module.

Auslöser
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.

getDependentModuleList

()Methode 
public function getDependentModuleList(moduleId:String, fetchIndirectReferences:Boolean = false):com.adobe.icc.token:IAsyncToken

Sprachversion: ActionScript 3.0
Produktversion: Baustein „Asset Composer“ 9.5
Laufzeitversionen: AIR (unsupported), Flash Player 9, Flash Player 10

Retrieve a list of modules that depend on the specified module. For instance, a list or conditional module may use the specified module as an item or case result, respectively.

Parameter

moduleId:String — The ID (GUID) of the data module whose module dependencies are sought.
 
fetchIndirectReferences:Boolean (default = false) — True, if you wish to fetch the modules that directly or indirectly use this module. For example, if a Text T1 is used in a List L1, and List L1 is used in Condition C1, the List would contain (L1 and C1), for the Text T1. If false, the List would contain only L1.

Rückgabewerte
com.adobe.icc.token:IAsyncTokenArrayCollection of DataModule objects that represent the modules that depend on the specified data module.

Auslöser
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.

getDependentModules

()Methode 
public function getDependentModules(moduleId:String, fetchIndirectReferences:Boolean = false):com.adobe.icc.token:IAsyncToken

Sprachversion: ActionScript 3.0
Produktversion: Baustein „Asset Composer“ 10
Laufzeitversionen: AIR (unsupported), Flash Player 10.2

Retrieve a list of modules that depend on the specified module. For instance, a list or conditional module may use the specified module as an item or case result, respectively.

Parameter

moduleId:String — The ID (GUID) of the data module whose module dependencies are sought.
 
fetchIndirectReferences:Boolean (default = false) — Fetch direct or indirect references of the module

Rückgabewerte
com.adobe.icc.token:IAsyncTokenArrayCollection of DataModule objects that represent the modules that depend on the specified data module.

Auslöser
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.

getUsedDataModules

()Methode 
public function getUsedDataModules(moduleId:String, fetchIndirectReferences:Boolean = false):com.adobe.icc.token:IAsyncToken

Sprachversion: ActionScript 3.0
Produktversion: Baustein „Asset Composer“ 9.5
Laufzeitversionen: AIR (unsupported), Flash Player 9, Flash Player 10

Retrieve the list of other modules that is used by the module identified by the given moduleID.

Parameter

moduleId:String — ID of the data module, for which the used modules are to be fetched.
 
fetchIndirectReferences:Boolean (default = false) — True, if you wish to fetch the modules that are directly or indirectly used by this module. For example, if a Text T1 is used in a List L1, and List L1 is used in Condition C1, the List would contain (T1 and L1), for the Condition C1. If false, the List would contain only L1.

Rückgabewerte
com.adobe.icc.token:IAsyncToken — List of other modules that is used by the data module. Empty list returned, if the module does not use any other module.

Auslöser
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.

isModuleReferenced

()Methode 
public function isModuleReferenced(moduleId:String):com.adobe.icc.token:IAsyncToken

Sprachversion: ActionScript 3.0
Produktversion: Baustein „Asset Composer“ 9.5
Laufzeitversionen: AIR (unsupported), Flash Player 9, Flash Player 10

Determine if the specified module is reference by some other asset (e.g. a letter or some other module).

Parameter

moduleId:String — The ID (GUID) of the data module in question.

Rückgabewerte
com.adobe.icc.token:IAsyncTokenBoolean which is true if the module is reference by another asset; false if it isn't (has no dependents).

Auslöser
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.

markReadyToPublish

()Methode 
public function markReadyToPublish(srcModuleId:String):com.adobe.icc.token:IAsyncToken

Sprachversion: ActionScript 3.0
Produktversion: Baustein „Asset Composer“ 10
Laufzeitversionen: AIR (unsupported), Flash Player 10.2

Marks for Publish an existing module in the database.

Parameter

srcModuleId:String — Id of the dataModule.

Rückgabewerte
com.adobe.icc.token:IAsyncToken — The updated DataModule object.

Auslöser
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.

publishDataModule

()Methode 
public function publishDataModule(srcModuleId:String):com.adobe.icc.token:IAsyncToken

Sprachversion: ActionScript 3.0
Produktversion: Baustein „Asset Composer“ 10
Laufzeitversionen: AIR (unsupported), Flash Player 10.2

Publishes an existing module in the database.

Parameter

srcModuleId:String — Id of the dataModule.

Rückgabewerte
com.adobe.icc.token:IAsyncToken — The updated DataModule object.

Auslöser
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.

revertToLastPublish

()Methode 
public function revertToLastPublish(srcModuleId:String):com.adobe.icc.token:IAsyncToken

Sprachversion: ActionScript 3.0
Produktversion: Baustein „Asset Composer“ 10
Laufzeitversionen: AIR (unsupported), Flash Player 10.2

Reverts the data module to the last published version. If module is not published, it is removed from repository.

Parameter

srcModuleId:String — Id of the data module.

Rückgabewerte
com.adobe.icc.token:IAsyncToken — The reverted data module object

updateDataModule

()Methode 
public function updateDataModule(module:DataModule):com.adobe.icc.token:IAsyncToken

Sprachversion: ActionScript 3.0
Produktversion: Baustein „Asset Composer“ 9.5
Laufzeitversionen: AIR (unsupported), Flash Player 9, Flash Player 10

Update an existing module in the database.

Parameter

module:DataModule — Data module holding the updated information.

Rückgabewerte
com.adobe.icc.token:IAsyncToken — The updated DataModule object.

Auslöser
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.




[ X ]Warum auf Englisch?
Inhalt des ActionScript 3.0-Referenzhandbuchs wird in englischer Sprache angezeigt

Nicht alle Teile des ActionScript 3.0-Referenzhandbuchs wurden in alle Sprachen übersetzt. Wenn der Text zu einem Sprachelement nicht übersetzt wurde, wird er auf Englisch angezeigt. Zum Beispiel wurden die Informationen zur ga.controls.HelpBox-Klasse nicht in andere Sprachen übersetzt. In der deutschen Version des Referenzhandbuchs erscheint der Abschnitt zur ga.controls.HelpBox-Klasse deshalb auf Englisch.