carfield.com.hkButtonCreator.java2004-03-24T16:00:00Z2004-03-24T16:00:00Z<br/><TEXTAREA name="code" class="java" rows="16" cols="100">package examples.factoryMethod.java;
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* This file is part of the design patterns project at UBC
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* either http://www.mozilla.org/MPL/ or http://aspectj.org/MPL/.
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is ca.ubc.cs.spl.patterns.
*
* Contributor(s):
*/
import javax.swing.JButton;
import javax.swing.JComponent;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
/**
* Implements a <i>ConcreteCreator</i> that creates buttons.
*
* @author Jan Hannemann
* @author Gregor Kiczales
* @version 1.0, 05/13/02
*
* @see LabelCreator
*/
public class ButtonCreator extends Creator {
/**
* Factory method that creates a button with label and <code>
* ActionListener</code>.
*
* @returns the created button
*/
public JComponent createComponent() {
final JButton button = new JButton("Click me!");
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
button.setText("Thank you!");
}
});
return button;
}
/**
* Returns a title explaining this example.
*
* @returns the title for the GUI frame
*/
public String getTitle() {
return "Example1: A JButton";
}
}
</TEXTAREA><br><br/><script type="text/javascript"><!--google_ad_client = "pub-9426659565807829";google_ad_slot = "9359905831";google_ad_width = 728;google_ad_height = 15;//--></script><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>2004-03-24T16:00:00ZCreator.java2004-03-24T16:00:00Z2004-03-24T16:00:00Z<br/><TEXTAREA name="code" class="java" rows="16" cols="100">package examples.factoryMethod.java;
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* This file is part of the design patterns project at UBC
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* either http://www.mozilla.org/MPL/ or http://aspectj.org/MPL/.
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is ca.ubc.cs.spl.patterns.
*
* Contributor(s):
*/
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JComponent;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.Point;
/**
* Defines the <i>Creator</i> interface with the <i>factoryMethod()</i>
* method signature and the <i>anOperation()</i> method that uses it. For
* details, see GoF, page 108.<p>
*
* The factory method is <code>createComponent</code> and it creates
* A JComponent (a button and a label, repsectively). The <i>anOperation()</i>
* method <code>showFrame()</code> uses the factory method to show a little
* GUI.
*
* @author Jan Hannemann
* @author Gregor Kiczales
* @version 1.0, 05/13/02
*
* @see ButtonCreator
* @see LabelCreator
*/
public abstract class Creator {
/**
* The factory method to be concretized by subclasses.
*
* @returns the created product
*/
public abstract JComponent createComponent();
/**
* Another factory method to create a title for the GUI frame created by
* <code>Creator</code>.
*
* @returns the title for the GUI frame
*/
public abstract String getTitle();
/**
* the position for the next frame to be created (on the screen)
*/
private static Point lastFrameLocation = new Point(0, 0);
/**
* Creates a <code>JFrame</code>, puts the <code>JComponent</code> that
* is created by the factory method into it and displays the frame. This
* Method also provides a <code>WindowListener</code>.
*/
public final void showFrame() {
JFrame frame = new JFrame(getTitle());
frame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {System.exit(0);}
});
JPanel panel = new JPanel();
panel.add(createComponent());
frame.getContentPane().add(panel);
frame.pack();
frame.setLocation(lastFrameLocation);
lastFrameLocation.translate(75, 75);
frame.setVisible(true);
}
}
</TEXTAREA><br><br/><script type="text/javascript"><!--google_ad_client = "pub-9426659565807829";google_ad_slot = "9359905831";google_ad_width = 728;google_ad_height = 15;//--></script><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>2004-03-24T16:00:00ZCreatorImplementation.java2004-03-24T16:00:00Z2004-03-24T16:00:00Z<br/><TEXTAREA name="code" class="java" rows="16" cols="100">package examples.factoryMethod.aspectj;
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* This file is part of the design patterns project at UBC
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* either http://www.mozilla.org/MPL/ or http://aspectj.org/MPL/.
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is ca.ubc.cs.spl.patterns.
*
* Contributor(s):
*/
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JComponent;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.Point;
/**
* Provides a default implementation for the <i>anOperation()</i>
* method <code>showFrame()</code>. The implementation is attached to the
* <code>Creator</code> interface. With this approach, <i>Creator</i> does
* not have to be an abstract class.
*
* @author Jan Hannemann
* @author Gregor Kiczales
* @version 1.0, 05/13/02
*
* @see Creator
*/
public aspect CreatorImplementation {
/**
* the position for the next frame to be created (on the screen)
*/
private static Point Creator.lastFrameLocation = new Point(0, 0);
/**
* Creates a <code>JFrame</code>, puts the <code>JComponent</code> that
* is created by the factory method into it and displays the frame. This
* Method also provides a <code>WindowListener</code>.
*/
public final void Creator.showFrame() {
JFrame frame = new JFrame(getTitle());
frame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {System.exit(0);}
});
JPanel panel = new JPanel();
panel.add(createComponent());
frame.getContentPane().add(panel);
frame.pack();
frame.setLocation(lastFrameLocation);
lastFrameLocation.translate(75, 75);
frame.setVisible(true);
}
}</TEXTAREA><br><br/><script type="text/javascript"><!--google_ad_client = "pub-9426659565807829";google_ad_slot = "9359905831";google_ad_width = 728;google_ad_height = 15;//--></script><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>2004-03-24T16:00:00ZLabelCreator.java2004-03-24T16:00:00Z2004-03-24T16:00:00Z<br/><TEXTAREA name="code" class="java" rows="16" cols="100">package examples.factoryMethod.java;
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* This file is part of the design patterns project at UBC
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* either http://www.mozilla.org/MPL/ or http://aspectj.org/MPL/.
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is ca.ubc.cs.spl.patterns.
*
* Contributor(s):
*/
import javax.swing.JLabel;
import javax.swing.JComponent;
/**
* Implements a <i>ConcreteCreator</i> that creates labels.
*
* @author Jan Hannemann
* @author Gregor Kiczales
* @version 1.0, 05/13/02
*
* @see ButtonCreator
*/
public class LabelCreator extends Creator {
/**
* Factory method that creates a button with label and <code>
* ActionListener</code>.
*
* @returns the created button
*/
public JComponent createComponent() {
JLabel label = new JLabel("This is a JLabel.");
return label;
}
/**
* Returns a title explaining this example.
*
* @returns the title for the GUI frame
*/
public String getTitle() {
return "Example2: A JLabel";
}
}
</TEXTAREA><br><br/><script type="text/javascript"><!--google_ad_client = "pub-9426659565807829";google_ad_slot = "9359905831";google_ad_width = 728;google_ad_height = 15;//--></script><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>2004-03-24T16:00:00ZMain.java2004-03-24T16:00:00Z2004-03-24T16:00:00Z<br/><TEXTAREA name="code" class="java" rows="16" cols="100">package examples.factoryMethod.java;
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* This file is part of the design patterns project at UBC
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* either http://www.mozilla.org/MPL/ or http://aspectj.org/MPL/.
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is ca.ubc.cs.spl.patterns.
*
* Contributor(s):
*/
/**
* Implements the driver for the FactoryMethod design pattern example.<p>
*
* Intent: <i>Define an interface for creating an object, but let subclasses
* decide which class to instantiate. Factory Method lets a class defer
* instantiation to subclasses.</i><p>
*
* Participatng objects are <code>ButtonCreator</code> and
* <code>LabelCreator</code> as <i>ConcreteCreator</i>s. Both implement
* the <code>Creator</code> interface.<p>
*
* In this example, the factory method <code>createComponent</code> creates
* A JComponent (a button and a label, repsectively). The <i>anOperation()</i>
* method <code>showFrame()</code> uses the factory method to show a little
* GUI. In one case, the created frame contains a button, in the other a
* simple label.
*
* <p><i>This is the Java version.</i><p>
*
* Since the <i>anOperation()</i> method requires an implementation, <i>
* Creator</i> has to be an abstract class (as opposed to an interface).
* Consequently, all <i>ConcreteCreator</i>s have to be subclasses of
* that class and cannot belong to a different inheritance hierarchy.
*
* @author Jan Hannemann
* @author Gregor Kiczales
* @version 1.0, 05/13/02
*
* @see Creator
* @see ButtonCreator
* @see LabelCreator
*/
public class Main {
/**
* Implements the driver for the FactoryMethod design pattern example.<p>
*
* In this example, the factory method <code>createComponent</code> creates
* A JComponent (a button and a label, repsectively). The <i>anOperation()</i>
* method <code>showFrame()</code> uses the factory method to show a little
* GUI. In one case, the created frame contains a button, in the other a
* simple label.
*/
public static void main(String[] args) {
Creator creator1 = new ButtonCreator();
Creator creator2 = new LabelCreator();
creator1.showFrame();
creator2.showFrame();
}
}</TEXTAREA><br><br/><script type="text/javascript"><!--google_ad_client = "pub-9426659565807829";google_ad_slot = "9359905831";google_ad_width = 728;google_ad_height = 15;//--></script><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>2004-03-24T16:00:00Zfiles.lst2004-03-24T16:00:00Z2004-03-24T16:00:00Z<br/><br/><script type="text/javascript"><!--google_ad_client = "pub-9426659565807829";google_ad_slot = "9359905831";google_ad_width = 728;google_ad_height = 15;//--></script><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>2004-03-24T16:00:00Z