Java Learning Note (48)-Adapter class Adapter

Source: Internet
Author: User

Adapter class Adapter, NULL implementation of an abstract method in an interface
ImportJava.awt.Button;ImportJava.awt.Frame;ImportJava.awt.event.MouseAdapter;ImportJava.awt.event.MouseEvent;ImportJava.awt.event.MouseListener;ImportJava.awt.event.WindowAdapter;ImportJava.awt.event.WindowEvent;ImportJava.awt.event.WindowListener;/ * * Adapter class Adapter, NULL implementation of an abstract method in an interface * / Public  class Test07 extends Frame{Button btn=NewButton ("point me."); Public Test07(String title) {Super(title);    Init (); } Public void Init() {Addwindowlistener (NewWindowadapter () {@Override             Public void windowclosing(WindowEvent e) {System.exit (0);        }        }); Btn.addmouselistener (NewMouseadapter () {@Override             Public void mouseclicked(MouseEvent e) {System.out.println ("It's been ordered!" ");        }        });        Add (BTN); SetSize ( $, $); Setlocationrelativeto (NULL); SetVisible (true); } Public Static void Main(string[] args) {NewTest07 ("haha"); }}

Java Learning Note (48)-Adapter class Adapter

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.