Decorator pattern in Java : Decorator Pattern « Design Pattern « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Collections Data Structure
8. Database SQL JDBC
9. Design Pattern
10. Development Class
11. Email
12. Event
13. File Input Output
14. Game
15. Hibernate
16. J2EE
17. J2ME
18. JDK 6
19. JSP
20. JSTL
21. Language Basics
22. Network Protocol
23. PDF RTF
24. Regular Expressions
25. Security
26. Servlets
27. Spring
28. Swing Components
29. Swing JFC
30. SWT JFace Eclipse
31. Threads
32. Tiny Application
33. Velocity
34. Web Services SOA
35. XML
Microsoft Office Word 2007 Tutorial
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Java » Design Pattern » Decorator PatternScreenshots 
Decorator pattern in Java
Decorator pattern in Java

/*
The Design Patterns Java Companion

Copyright (C) 1998, by James W. Cooper

IBM Thomas J. Watson Research Center

*/

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;

import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JPanel;

public class DecoWindow extends JFrame implements ActionListener {
  JButton Quit;

  public DecoWindow() {
    super("Deco Button");
    addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
        System.exit(0);
      }
    });

    JPanel jp = new JPanel();

    getContentPane().add(jp);
    jp.add(new CoolDecorator(new JButton("Cbutton")));
    jp.add(new SlashDecorator(new CoolDecorator(new JButton("Dbutton"))));
    //jp.add( new CoolDecorator(new JButton("Dbutton")));
    jp.add(Quit = new JButton("Quit"));
    Quit.addActionListener(this);
    setSize(new Dimension(200100));

    setVisible(true);
    Quit.requestFocus();
  }

  public void actionPerformed(ActionEvent e) {
    System.exit(0);
  }

  static public void main(String argv[]) {
    new DecoWindow();
  }
}

class Decorator extends JComponent {
  public Decorator(JComponent c) {
    setLayout(new BorderLayout());
    add("Center", c);
  }
}

class SlashDecorator extends Decorator {
  int x1, y1, w1, h1;

  public SlashDecorator(JComponent c) {
    super(c);
  }

  public void setBounds(int x, int y, int w, int h) {
    x1 = x;
    y1 = y;
    w1 = w;
    h1 = h;
    super.setBounds(x, y, w, h);
  }

  public void paint(Graphics g) {
    super.paint(g);
    g.setColor(Color.red);
    g.drawLine(00, w1, h1);
  }

}

class CoolDecorator extends Decorator {
  boolean mouse_over; //true when mose over button

  JComponent thisComp;

  public CoolDecorator(JComponent c) {
    super(c);
    mouse_over = false;
    thisComp = this//save this component
    //catch mouse movements in inner class
    c.addMouseListener(new MouseAdapter() {
      public void mouseEntered(MouseEvent e) {
        mouse_over = true//set flag when mouse over
        thisComp.repaint();
      }

      public void mouseExited(MouseEvent e) {
        mouse_over = false//clear flag when mouse not over
        thisComp.repaint();
      }
    });

  }

  //paint the button
  public void paint(Graphics g) {
    super.paint(g)//first draw the parent button
    if (!mouse_over)
    //if the mouse is not over the button
    //erase the borders
    {
      Dimension size = super.getSize();
      g.setColor(Color.lightGray);
      g.drawRect(00, size.width - 1, size.height - 1);
      g.drawLine(size.width - 20, size.width - 2, size.height - 1);
      g.drawLine(0, size.height - 2, size.width - 2, size.height - 2);
    }

  }
}

           
       
Related examples in the same category
1. Decorator Pattern 1
2. Decorator Design Pattern in Java
w___w___w_._j___a___v__a___2s.___c__o__m_ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.