AnyLogic
Expand
Font size
    java.lang.Object
      com.anylogic.engine.internal.ListenerList
        com.anylogic.engine.presentation.LegacyShapeGISMapStuff.ALListenerList<T>
All Implemented Interfaces:
Serializable, Iterable<T>
Enclosing class:
LegacyShapeGISMapStuff

@Deprecated
@AnyLogicInternalAPI
public static class LegacyShapeGISMapStuff.ALListenerList<T>
extends com.anylogic.engine.internal.ListenerList
implements Iterable<T>
Deprecated.
See Also:
Serialized Form

Field Summary

Fields inherited from class com.anylogic.engine.internal.ListenerList

EQUALITY, IDENTITY

Constructor Summary

ConstructorDescription
ALListenerList()
Deprecated.
 
ALListenerList(int mode)
Deprecated.
 

Method Summary

Modifier and TypeMethodDescription
voidadd(Object listener)
Deprecated.
voidaddImpl(T listener)
Deprecated.
 
Object[]getListeners()
Deprecated.
List<T>getListenersImpl()
Deprecated.
Iterator<T>iterator()
Deprecated.
 
voidremove(Object listener)
Deprecated.
voidremoveImpl(T listener)
Deprecated.
 

Methods inherited from class com.anylogic.engine.internal.ListenerList

clear, isEmpty, size

Methods inherited from class java.lang.Object

equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Methods inherited from interface java.lang.Iterable

forEach, spliterator

Constructor Details

ALListenerList

public ALListenerList()
Deprecated.

ALListenerList

public ALListenerList(int mode)
Deprecated.

Method Details

addImpl

public void addImpl(T listener)
Deprecated.

getListenersImpl

@Deprecated
public List<T> getListenersImpl()
Deprecated.
use for each because implements Iterable

removeImpl

public void removeImpl(T listener)
Deprecated.

add

@Deprecated
public void add(Object listener)
Deprecated.
use addImpl(T)
Overrides:
add in class com.anylogic.engine.internal.ListenerList

getListeners

@Deprecated
public Object[] getListeners()
Deprecated.
use foreach because implements Iterable
Overrides:
getListeners in class com.anylogic.engine.internal.ListenerList

remove

@Deprecated
public void remove(Object listener)
Deprecated.
use removeImpl(T)
Overrides:
remove in class com.anylogic.engine.internal.ListenerList

iterator

public Iterator<T> iterator()
Deprecated.
Specified by:
iterator in interface Iterable<T>