|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface Alerters
Warning: This interface is no longer functional from the SAP BusinessObjects 4.0 release onwards.
TheAlerters interface contains a collection of Alerter
objects.
Alerter objects contained in each Alerters object
are linked to individual TableCell and Cell object
properties.
Alertable,
TableCell,
Cell,
Alerter| Method Summary | |
|---|---|
void |
addAlerter(java.lang.String alerterID)
Adds an Alerter to the collection. |
Alerter |
getAlerter(int index)
Returns the Alerter at a given index. |
Alerter |
getAlerter(java.lang.String id)
Returns a specific Alerter using its known identifier. |
int |
getCount()
Returns the number of Alerter objects contained in the
TableCell object. |
void |
moveAlerter(int fromIndex,
int toIndex)
Moves a alerter from one place to another in collection. |
void |
removeAlerter(int index)
Removes an Alerter at a given index. |
void |
removeAlerter(java.lang.String alerterID)
Removes an Alerter from the collection. |
void |
removeAllAlerters()
Removes all Alerter objects from this object. |
| Method Detail |
|---|
int getCount()
Alerter objects contained in the
TableCell object.
Alerter objects.Alerter getAlerter(int index)
Alerter at a given index.
index - the position of Alerter to be returned.
Alerter at a given index.
IndexOutOfBoundsException - if index is out of range.Alerter getAlerter(java.lang.String id)
Alerter using its known identifier.
Note: If the id passed is invalid, null is returned.
id - the identifier for a specific Alerter.
Alerter.
NullPointerException - if alerterID is null.void addAlerter(java.lang.String alerterID)
Alerter to the collection.
alerterID - the Alerter object's identifier.
java.lang.NullPointerException - if alerterID is null.
java.lang.IllegalArgumentException - if alerterID doesn't exist in AlertersDictionary.
}void removeAlerter(java.lang.String alerterID)
Alerter from the collection.
If the Alerter has already been removed, nothing is done.
alerterID - the identifier for a specific Alerter.
NullPointerException - if alerterID is null.void removeAlerter(int index)
Alerter at a given index.
index - the position of Alerter to be removed.
IndexOutOfBoundsException - if index is out of range.void removeAllAlerters()
Alerter objects from this object.
If all Alerter objects have already been removed, nothing is done.
void moveAlerter(int fromIndex,
int toIndex)
fromIndex - the initial index of the alerter to be moved (0 based)toIndex - the final index of the alerter to be moved (0 based)
java.lang.IndexOutOfBoundsException - if fromIndex or toIndex is out
of range (fromIndex(toIndex) < 0 || fromIndex(toIndex) >= getCount())
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||