Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsWhite Papers
Discussion GroupsFirst AidDatabasesJavaBeansGUIJava 3DVirtual MachineCORBASecurityToolsGeneral
Java DirectoryOpen Source ProjectsSample Book ChaptersUser GroupsWeb Resources
Related Topics
Databases.NETMore Topics ...

Java Forum / General / August 2005

Tip: Looking for answers? Try searching our database.

EventListenerList.remove parameters

Thread view: 
- - 01 Aug 2005 02:18 GMT
I'm having problems with the eventListenerList.remove(c,
eventListeners[i + 1]).

What should i do to cast it?

public void removeAllListeners(Class c) {
  Object[] eventListeners = eventListenerList.getListenerList();
  for (int i = eventListeners.length - 2; i >= 0; i -= 2) {
    if (eventListeners[i] == c) {
      eventListenerList.remove(c, eventListeners[i + 1]);
    }
  }
}
Thomas Hawtin - 01 Aug 2005 03:04 GMT
> I'm having problems with the eventListenerList.remove(c,
> eventListeners[i + 1]).
[quoted text clipped - 9 lines]
>   }
> }

The second argument to the remove method should be cast to
java.util.EventListener.

(And with generics you'll get an unchecked cast warning...)

Tom Hawtin
Signature

Unemployed English Java programmer
http://jroller.com/page/tackline/



Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.