Package | com.adobe.solutions.rca.domain.common |
Interface | public 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) |
Related API Elements
Property | Defined 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 |
Method | Defined 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 |
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
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.
|
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.
|
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.
|
mx.rpc:AsyncToken — It returns a token on which success or fault handlers can be attached.
|
Related API Elements
Thu Dec 6 2018, 01:12 PM -08:00