Returns an array of all the objects currently registered
as
FooListener
s
upon this model.
FooListener
s are registered using the
addFooListener
method.
You can specify the listenerType
argument
with a class literal,
such as
FooListener.class
.
For example, you can query a
DefaultTreeSelectionModel
m
for its tree selection listeners with the following code:
TreeSelectionListener[] tsls = (TreeSelectionListener[])(m.getListeners(TreeSelectionListener.class));
If no such listeners exist, this method returns an empty array.
Returns:
an array of all objects registered as
FooListener
s on this component,
or an empty array if no such
listeners have been added
Parameters:
-
listenerType - the type of listeners requested; this parameter
should specify an interface that descends from
java.util.EventListener
Throws:
-
ClassCastException - if
listenerType
doesn't specify a class or interface that implements
java.util.EventListener
Since:
1.3
See Also:
DefaultTreeSelectionModel.getTreeSelectionListeners()
,
DefaultTreeSelectionModel.getPropertyChangeListeners()
,