277294.ijbsn.asiaMain.java2004-03-24T16:00:00Z2004-03-24T16:00:00Z<br/><TEXTAREA name="code" class="java" rows="16" cols="100">package examples.observer.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 java.awt.Color;
/**
* Implements the driver for the observer design pattern example.<p>
*
* Intent: <i>Define a one-to-many dependency between objects so that when one
* object changes state, all its dependents are notified and updated
* automatically</i><p>
*
* Participatng objects are <code>Point</code> p and <code>Screen</code>
* s1, s2, s3, s4, and s5.<p>
*
* Three different kinds of observing relationships are realized: <UL>
* <LI> <code>Screen</code> s1 and s2 observe color changes of <code>Point
* </code> p.
* <LI> <code>Screen</code> s3 and s4 observe coordinate changes of <code>
* Point</code> p.
* <LI> <code>Screen</code> s5 observes the <code>display(String)</code>
* methods of <code>Screen</code> s2 and s4.
* </UL>
*
* Every time an event of interest occurs, the observing <code>Screen</code>
* prints and appropriate message to stdout. <p>
*
* <p>This is the pure Java version.</i><p>
*
* The example illustrates that it is hard to
* cleanly modularize the different observing relationships. The following
* implementation issues have to be considered for the Java version:
* <UL>
* <LI> Observer and Subject can only be interfaces (as opposed to abstract
* classes) if we do not want to restrict inhertance and thus code
* reuse of existing classes completely.
* <LI> As interfaces, we cannot attach default implementations for methods
* like <code>attach()</code>, <code>notify()</code>, etc. Note that
* these two problems only apply because Java does not offer multiple
* inheritance.
* <LI> Some implementation constraints are made implicit and are thus not
* enforced: I.e., each Subject needs a field to store its observers
* <LI> The classes that become subject and observer in the pattern context
* need to be modified. In particular, subjects need to store the
* mapping, implement the appropriate procedures. Observers need to
* implement <code>update()</code>
* <LI> If a particular class takes part in more than one observing
* relationship (as in this example), it is difficult to have both
* notify/update mechanisms go through the same interface and yet
* separate them cleanly.
* </UL>
*
* @author Jan Hannemann
* @author Gregor Kiczales
* @version 1.0, 05/13/02
*
* @see Point
* @see Screen
* @see Observer
* @see Subject
*/
public class Main {
/**
* Implements the driver for the observer example. It creates five
* <code>Screen</code> objects and one <code>Point</code> object
* and sets the appropriate observing relationships (see above).
* After the setup, the color of the point is changed, then it's
* x-coordinate. <p>
* The following results should be expected: <OL>
* <LI> The color change should trigger s1 and s2 to each print an
* appropriate message.
* <LI> s2's message should trigger it's observer s5 to print
* a message.
* <LI> The coordinate change should trigger s3 and s4.
* <LI> s4's message should trigger it's observer s5 again.
*/
public static void main(String argv[]) {
Point p = new Point(5, 5, Color.blue);
System.out.println("Creating Screen s1,s2,s3,s4,s5 and Point p");
Screen s1 = new Screen("s1");
Screen s2 = new Screen("s2");
Screen s3 = new Screen("s3");
Screen s4 = new Screen("s4");
Screen s5 = new Screen("s5");
System.out.println("Creating observing relationships:");
System.out.println("- s1 and s2 observe color changes to p");
System.out.println("- s3 and s4 observe coordinate changes to p");
System.out.println("- s5 observes s2's and s4's display() method");
p.attach(s1);
p.attach(s2);
p.attach(s3);
p.attach(s4);
s2.attach(s5);
s4.attach(s5);
System.out.println("Changing p's color:");
p.setColor(Color.red);
System.out.println("Changing p's x-coordinate:");
p.setX(4);
System.out.println("done.");
}
}
</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:00ZObserver.java2004-03-24T16:00:00Z2004-03-24T16:00:00Z<br/><TEXTAREA name="code" class="java" rows="16" cols="100">package examples.observer.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):
*/
/**
* Defines the method used to update <i>Observers<i>.
*
* @author Jan Hannemann
* @author Gregor Kiczales
* @version 1.0, 05/13/02
*
* @see Subject
*/
public interface Observer {
/**
* Updates an <i>Observer</i>. Uses the <i>push</i> strategy (i.e. the
* subject triggering the update passes itself as an argument).
*
* @param s the subject triggering the update
*/
public void update(Subject s);
}</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:00ZPoint.java2004-03-24T16:00:00Z2004-03-24T16:00:00Z<br/><TEXTAREA name="code" class="java" rows="16" cols="100">package examples.observer.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 java.awt.Color;
import java.util.HashSet;
import java.util.Iterator;
/**
* Represents a point with x and y coordinates and a color.
*
* @author Jan Hannemann
* @author Gregor Kiczales
* @version 1.0, 05/13/02
*/
public class Point implements Subject {
/**
* stores the observers for this point (subject)
*/
private HashSet observers;
/**
* the point's x-coordinate
*/
private int x;
/**
* the point's y-coordinate
*/
private int y;
/**
* the point's current color
*/
private Color color;
/**
* Creates a new point object based on x and y coordinates and color.
*/
public Point(int x, int y, Color color) {
this.x=x;
this.y=y;
this.color=color;
this.observers = new HashSet();
}
/**
* Returns the point's current x-coordinate.
*
* @return the current x-coordinate
*/
public int getX() { return x; }
/**
* Returns the point's current y-coordinate.
*
* @return the current y-coordinate
*/
public int getY() { return y; }
/**
* Sets the current x-coordinate.
*
* @param x the new x-coordinate
*/
public void setX(int x) {
this.x=x;
notifyObservers();
}
/**
* Sets the current y-coordinate.
*
* @param y the new y-coordinate
*/
public void setY(int y) {
this.y=y;
notifyObservers();
}
/**
* Returns the point's current color.
*
* @return the current color
*/
public Color getColor() { return color; }
/**
* Sets the current color.
*
* @param color the new color
*/
public void setColor(Color color) {
this.color=color;
notifyObservers();
}
public void attach(Observer o) {
this.observers.add(o);
}
public void detach(Observer o) {
this.observers.remove(o);
}
public void notifyObservers() {
for (Iterator e = observers.iterator() ; e.hasNext() ;) {
((Observer)e.next()).update(this);
}
}
}
</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:00ZScreen.java2004-03-24T16:00:00Z2004-03-24T16:00:00Z<br/><TEXTAREA name="code" class="java" rows="16" cols="100">package examples.observer.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 java.util.HashSet;
import java.util.Iterator;
/**
* Provides a means to output messages. This class is a placeholder for an
* output device.
*
* @author Jan Hannemann
* @author Gregor Kiczales
* @version 1.0, 05/13/02
*/
public class Screen implements Subject, Observer {
/**
* stores the observers for this screen (subject)
*/
private HashSet observers;
/**
* the individual name of this screen object
*/
private String name;
/**
* creates a new <code>Screen</code> object with the provided name.
*
* @param name the name for the new <code>Screen</code> object
*/
public Screen(String s) {
this.name = s;
observers = new HashSet();
}
/**
* Prints the name of the <code>Screen</code> object and the argument
* string to stdout.
*
* @param s the string to print
*/
public void display (String s) {
System.out.println(name + ": " + s);
notifyObservers();
}
public void attach(Observer o) {
this.observers.add(o);
}
public void detach(Observer o) {
this.observers.remove(o);
}
public void notifyObservers() {
for (Iterator e = observers.iterator() ; e.hasNext() ;) {
((Observer)e.next()).update(this);
}
}
public void update(Subject s) {
display("update received from a "+s.getClass().getName()+" object");
}
}
</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:00ZSubject.java2004-03-24T16:00:00Z2004-03-24T16:00:00Z<br/><TEXTAREA name="code" class="java" rows="16" cols="100">package examples.observer.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):
*/
/**
* Defines methods to attach and detach <i>Observers<i> to/from
* <i>Subjects</i>, and the <code>notifyObservers()</code> method.
*
* @author Jan Hannemann
* @author Gregor Kiczales
* @version 1.0, 05/13/02
*
* @see Observer
*/
public interface Subject {
/**
* Attaches an observer to this subject.
*
* @param o the observer to attach
*/
public void attach(Observer o);
/**
* Detaches an observer from this subject.
*
* @param o the observer to detach
*/
public void detach(Observer o);
/**
* Notifies all observers.
*/
public void notifyObservers();
}</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