ActionScript® 3.0 Reference for the Adobe® Flash® Platform
Home  |  Show Packages and Classes List |  Packages  |  Classes  |  What's New  |  Index  |  Appendixes
com.adobe.solutions.rca.domain.common 

IMemberCollection  - AS3 Review, Commenting, and Approval

Packagecom.adobe.solutions.rca.domain.common
Interfacepublic interface IMemberCollection

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 10.0
Runtime Versions: Flash Player 10.2, AIR (unsupported)

This interface defines an entity that has a collection of members associated with it.

Related API Elements



Public Properties
 PropertyDefined By
  allMemberList : IList
[read-only] The property returns a collection of all members.
IMemberCollection
  memberList : IList
[read-only] The property returns a collection of directly associated members.
IMemberCollection
  uniqueMemberList : IList
[read-only] The property returns a collection of unique members.
IMemberCollection
Public Methods
 MethodDefined By
  
This remote operation adds a member to the collection and submits the change to the server.
IMemberCollection
  
This remote operation removes a member from the collection and submits the change to the server.
IMemberCollection
  
This remote operation updates the tile of a member present in collection and submits the change to the server.
IMemberCollection
Property Detail

allMemberList

property
allMemberList:IList  [read-only]

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 10.0
Runtime Versions: Flash Player 10.2, AIR (unsupported)

The property returns a collection of all members. It takes into consideration any child objects that may be of type IMemberCollection.

This property can be used as the source for data binding. When this property is modified, it dispatches the memberListChanged event.



Implementation
    public function get allMemberList():IList

Related API Elements

memberList

property 
memberList:IList  [read-only]

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 10.0
Runtime Versions: Flash Player 10.2, AIR (unsupported)

The property returns a collection of directly associated members.

This property can be used as the source for data binding. When this property is modified, it dispatches the memberListChanged event.



Implementation
    public function get memberList():IList

Related API Elements

uniqueMemberList

property 
uniqueMemberList:IList  [read-only]

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 10.0
Runtime Versions: Flash Player 10.2, AIR (unsupported)

The property returns a collection of unique members.

This property can be used as the source for data binding. When this property is modified, it dispatches the memberListChanged event.



Implementation
    public function get uniqueMemberList():IList

Related API Elements

Method Detail

addMemberAndSave

()method
public function addMemberAndSave(member:IMember):mx.rpc:AsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 10.0
Runtime Versions: Flash Player 10.2, AIR (unsupported)

This remote operation adds a member to the collection and submits the change to the server.

Parameters

member:IMember — The member to be added to member collection.

Returns
mx.rpc:AsyncToken — It returns a token on which success or fault handlers can be attached.

Related API Elements

removeMemberAndSave

()method 
public function removeMemberAndSave(member:IMember):mx.rpc:AsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 10.0
Runtime Versions: Flash Player 10.2, AIR (unsupported)

This remote operation removes a member from the collection and submits the change to the server.

Parameters

member:IMember — The member to be removed from member collection.

Returns
mx.rpc:AsyncToken — It returns a token on which success or fault handlers can be attached.

Related API Elements

updateTitleAndSave

()method 
public function updateTitleAndSave(member:IMember, title:String):mx.rpc:AsyncToken

Language Version: ActionScript 3.0
Product Version: Review, Commenting, and Approval Building Block 10.0
Runtime Versions: Flash Player 10.2, AIR (unsupported)

This remote operation updates the tile of a member present in collection and submits the change to the server.

Parameters

member:IMember — The member to be removed from member collection.
 
title:String — The title of the member.

Returns
mx.rpc:AsyncToken — It returns a token on which success or fault handlers can be attached.

Related API Elements