carfield.com.hkMain.java2004-03-24T16:00:00Z2004-03-24T16:00:00Z<br/><TEXTAREA name="code" class="java" rows="16" cols="100">package examples.memento.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 memento design pattern example.<p>
*
* Intent: <i>Without violating encapsulation, capture and externalize an
* object's internal state so that the object can be restored to this state
* later</i><p>
*
* Participatng objects are <code>Memento</code> and <code>Originator</code>
* <p>
*
* This example changes the state of the <i>Originator</i> five times, but
* creates a <i>Memento</i> of it after the third change. After the 5 changes
* are done, the <i>Memento</i> is used to restore the <i>Originator</i>'s
* state.
*
* <p><i>This is the Java version.</i><p>
*
* Memento and Originator are tightly coupled.
*
* @author Jan Hannemann
* @author Gregor Kiczales
* @version 1.0, 07/13/02
*
* @see Memento
* @see Originator
*/
public class Main {
/**
* This example changes the state of the <i>Originator</i> five times, but
* creates a <i>Memento</i> of it after the third change. After the 5 changes
* are done, the <i>Memento</i> is used to restore the <i>Originator</i>'s
* state.
*/
public static void main(String[] args) {
Memento storedState = null;
Originator counter = new Originator();
for (int i=1; i<=5; i++) {
counter.increment();
counter.show();
if (i==3) { storedState = counter.createMemento(); }
}
System.out.println("\nTrying to reinstate state (3)...");
counter.setMemento(storedState);
counter.show();
}
}</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:00ZMemento.java2004-03-24T16:00:00Z2004-03-24T16:00:00Z<br/><TEXTAREA name="code" class="java" rows="16" cols="100">package examples.memento.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 a sample <i>Memento</i> class. This particular menento stores
* the counter of its originator (an int value), and returns it upon request.
*
* @author Jan Hannemann
* @author Gregor Kiczales
* @version 1.0, 07/13/02
*
* @see Originator
*/
public class Memento {
/**
* stores the originator's state
*/
private int state;
/**
* Captures the originator's state and stores it
*
* @param newState the state to store
*/
public void setState(int newState) {
state = newState;
}
/**
* Returns the stored originator state
*
* @returns the stored state
*/
public int getState() {
return state;
}
/**
* Creates a memento object specifically designed for this example
*
* @param init the initial state to store
*/
public Memento(int init) {
state = init;
}
}</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:00ZMyOriginator.java2004-03-24T16:00:00Z2004-03-24T16:00:00Z<br/><TEXTAREA name="code" class="java" rows="16" cols="100">package examples.memento.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):
*/
/**
* Implements a sample <i>Originator</i> class. Objects of this particular
* originator have stat: an int representing the number of time the <code>
* increment()</code> method was called. <p>
*
* The originator does not know about its role in the pattern.
*
* @author Jan Hannemann
* @author Gregor Kiczales
* @version 1.0, 07/13/02
*
* @see StateMemento
*/
public class MyOriginator {
/**
* the number of times <code>increment()</code> was called on this object
*/
protected int currentValue = 0;
/**
* increments the counter (this originator's state) by one
*/
public void increment() {
currentValue++;
}
/**
* Displays a the state of this originator
*/
public void show() {
System.out.println("Originator value is " + currentValue);
}
}</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:00ZOriginator.java2004-03-24T16:00:00Z2004-03-24T16:00:00Z<br/><TEXTAREA name="code" class="java" rows="16" cols="100">package examples.memento.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 a sample <i>Originator</i> class. Objects of this particular
* originator have stat: an int representing the number of time the <code>
* increment()</code> method was called.
*
* @author Jan Hannemann
* @author Gregor Kiczales
* @version 1.0, 07/13/02
*
* @see Memento
*/
public class Originator {
/**
* the number of times <code>increment()</code> was called on this object
*/
protected int currentValue = 0;
/**
* increments the counter (this originator's state) by one
*/
public void increment() {
currentValue++;
}
/**
* Displays a the state of this originator
*/
public void show() {
System.out.println("Originator value is " + currentValue);
}
/**
* Creates a memento from this originator, storing the current state
*/
public Memento createMemento() {
return new Memento(currentValue);
}
/**
* Restores this originator to former state stored by the memento passed
*
* @param m the memento that stores the prior state
*/
public void setMemento(Memento m) {
currentValue = m.getState();
}
}</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:00ZStateMemento.java2004-03-24T16:00:00Z2004-03-24T16:00:00Z<br/><TEXTAREA name="code" class="java" rows="16" cols="100">package examples.memento.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 ca.ubc.cs.spl.pattern.library.Memento;
import ca.ubc.cs.spl.pattern.library.MementoException;
import ca.ubc.cs.spl.pattern.library.MementoProtocol;
/**
* Implements an instance of the memento design pattern.
*
* @author Jan Hannemann
* @author Gregor Kiczales
* @version 1.0, 07/13/02
*
* @see MyOriginator
*/
public aspect StateMemento extends MementoProtocol {
/**
* Assigns the <i>Originator</i> role to <code>MyOriginator</code>
*/
declare parents: MyOriginator implements Originator;
/**
* Creates a <i>Memento</i> object for an <i>Originator</i>. An anonymous
* class is used to realize the Memento
*
* @param o the originator to create a memento for
* @returns the memento storing the originator's state
*/
public Memento createMementoFor(Originator o) {
if (o instanceof MyOriginator) {
Memento m = new Memento() {
private Integer state;
public void setState(Object state) {
this.state = (Integer) state;
}
public Object getState() {
return state;
}
};
m.setState(new Integer(((MyOriginator)o).currentValue));
return m;
} else {
throw new MementoException("Invalid originator");
}
}
/**
* Restores this originator to former state using the memento passed
*
* @param o the originator to restore
* @param m the memento that stores the prior state
*/
public void setMemento(Originator o, Memento m) {
if (o instanceof MyOriginator) {
Integer integer = (Integer) m.getState();
((MyOriginator)o).currentValue = integer.intValue();
} else {
throw new MementoException("Invalid originator");
}
}
}</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