The Artima Developer Community
Sponsored Link

Java Answers Forum
what isadapter class

2 replies on 1 page. Most recent reply: Feb 17, 2003 6:51 PM by Charles Bell

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 2 replies on 1 page
kanak

Posts: 14
Nickname: vava
Registered: Jan, 2003

what isadapter class Posted: Feb 16, 2003 7:43 AM
Reply to this message Reply
Advertisement
whatis adapter class and what is it used for
please help


Mike Penner

Posts: 16
Nickname: mikepenner
Registered: Jan, 2003

Re: what isadapter class Posted: Feb 17, 2003 7:12 AM
Reply to this message Reply
Here's a short description. Seems to be adapter from the GoF "Design Patterns" book.

http://exciton.cs.oberlin.edu/JavaResources/DesignPatterns/adapter.htm

A Google search on "design pattern adapter" returned lots of examples.

Charles Bell

Posts: 519
Nickname: charles
Registered: Feb, 2002

Re: what isadapter class Posted: Feb 17, 2003 6:51 PM
Reply to this message Reply
There are several java adapter classes.
MouseAdapter is one you can use to keep from having to implement all the methods of a MouseListener interface.
You creat your own extending the adapter class and then override the methods you really want to use such as the
public void mouseClicked(MouseEvent me){
//put your code in here
}

the adapter class is kind of a shell class which doesn't do anything but implement all the interface methods.
Saves time writing code.
When you want to use one of the methods you override the appropriate method in your own subclass and customize the behavior you want.

Other adapter classes:
WindowAdapter
MouseAdapter
XMLReaderAdapter
ComponentAdapter
ContainerAdapter
DragSourceAdap ter
DropTargetAdapter
FocusAdapter
KeyAdapter
.....

Flat View: This topic has 2 replies on 1 page
Topic: The deloyment of java socket server Previous Topic   Next Topic Topic: Create a session by JSP

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use