IObjectCollectionBase<T> Interface
A base collection of objects that supports command notifications.
Declaration
public interface IObjectCollectionBase<T> extends List<T>
Type Parameters
| Name | Description |
|---|---|
| T | The type of objects stored in the collection. |
Remarks
The IObjectCollectionBase<T> interface extends the standard List<T> interface and adds methods to manage command invokers and raise collection-related commands.
Implements
java.util.List<T>
Methods
raiseCommand(Object sender, String commandId) Method
Raises a command for the collection.
Declaration
public abstract void raiseCommand(Object sender, String commandId)
Parameters
| Name | Type | Description |
|---|---|---|
| sender | Object | The object that raises the command. |
| commandId | String | A string that identifies the command. |