Decorator pattern in Java : Decorator Pattern : Design Pattern : Java examples (example source code) Organized by topic

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. JSP
19. JSTL
20. Language Basics
21. Network Protocol
22. PDF RTF
23. Regular Expressions
24. Security
25. Servlets
26. Spring
27. Swing Components
28. Swing JFC
29. SWT JFace Eclipse
30. Threads
31. Tiny Application
32. Velocity
33. XML
Java Tutorial
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
Home | Contact Us
Copyright 2003 - 07 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.