*/
public void addTargetListener(String ns, String an, boolean isCSS,
AnimationTargetListener l) {
if (!isCSS) {
if (targetListeners == null) {
targetListeners = new DoublyIndexedTable();
}
LinkedList ll = (LinkedList) targetListeners.get(ns, an);
if (ll == null) {
ll = new LinkedList();
targetListeners.put(ns, an, ll);