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

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » Design Pattern » Decorator Pattern 




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
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.