carfield.com.hk Creating.java 2004-03-24T16:00:00Z 2004-03-24T16:00:00Z <br/><TEXTAREA name="code" class="java" rows="16" cols="100">package examples.templateMethod.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 &quot;License&quot;); 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 &quot;AS IS&quot; 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.pattern. * * Contributor(s): */ /** * Implements an instance of the Template Method design pattern. * Attaches the template method and its implementation to the * &lt;i&gt;AbstractClass&lt;/i&gt;, thereby allowing it to be an interface. * * @author Jan Hannemann * @author Gregor Kiczales * @version 1.0, 05/13/02 * * @see Creator * @see FancyCreator */ public aspect Creating { public String Creator.decorate(String s) { s = prepare(s); s = filter(s); s = finalize(s); return 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:00Z Creator.java 2004-03-24T16:00:00Z 2004-03-24T16:00:00Z <br/><TEXTAREA name="code" class="java" rows="16" cols="100">package examples.templateMethod.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 &quot;License&quot;); 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 &quot;AS IS&quot; 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.pattern. * * Contributor(s): */ /** * Defines the interface for creators. In this example, it acts as the &lt;i&gt; * AbstractClass&lt;/i&gt;. The template method is &lt;code&gt;decorate(String)&lt;/code&gt;, * which uses all other methods defined in this abstract class. * * @author Jan Hannemann * @author Gregor Kiczales * @version 1.0, 05/13/02 * * @see SimpleCreator * @see FancyCreator */ public interface Creator { //public String decorate(String s); Attached by aspect! /** * Prepares a string for decoration. * * @param s the string to filter * @returns the prepared string */ public String prepare (String s); /** * Filters a string. * * @param s the string to filter * @returns the filtered string */ public String filter (String s); /** * Finalizes a string. This is the last step in the template method. * * @param s the string to finalize * @returns the finalized string */ public String finalize (String 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:00Z FancyCreator.java 2004-03-24T16:00:00Z 2004-03-24T16:00:00Z <br/><TEXTAREA name="code" class="java" rows="16" cols="100">package examples.templateMethod.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 &quot;License&quot;); 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 &quot;AS IS&quot; 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.pattern. * * Contributor(s): */ /** * Implements a &lt;i&gt;ConcreteClass&lt;/i&gt; that decorates strings by turnung all * characters into lowercase and then capitalizing the consonants. It also * adds an explanation at the end. * * @author Jan Hannemann * @author Gregor Kiczales * @version 1.0, 05/13/02 * * @see Creator * @see SimpleCreator */ public class FancyCreator implements Creator { /** * Prepares a string for decoration. Turns the string into lowercase. * * @param s the string to filter * @returns the prepared string */ public String prepare (String s) { return s.toLowerCase(); } /** * Filters a string. Capitalizes all consonants. * * @param s the string to filter * @returns the filtered string */ public String filter (String s) { s = s.replace('a', 'A'); s = s.replace('e', 'E'); s = s.replace('i', 'I'); s = s.replace('o', 'O'); s = s.replace('u', 'U'); return s; } /** * Finalizes a string by adding an explanation to it. * * @param s the string to finalize * @returns the finalized string */ public String finalize (String s) { return (s+&quot;.\n(all consonants identified)&quot;); } }</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:00Z Main.java 2004-03-24T16:00:00Z 2004-03-24T16:00:00Z <br/><TEXTAREA name="code" class="java" rows="16" cols="100">package examples.templateMethod.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 &quot;License&quot;); 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 &quot;AS IS&quot; 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.pattern. * * Contributor(s): */ /** * Implements the driver for the Template Method design pattern example.&lt;p&gt; * * Intent: &lt;i&gt;Define the skeleton of an algorithm in an operation, deferring * some steps to subclasses. Template Method lets subclasses redefine certain * steps of an algorithm without changing the algorithm's structure&lt;/i&gt;&lt;p&gt; * * Participatng objects are &lt;code&gt;SimpleCreator&lt;/code&gt; and * &lt;code&gt;FancyCreator&lt;/code&gt; as &lt;i&gt;ConcreteClass&lt;/i&gt;es. The * &lt;i&gt;AbstractClass&lt;/i&gt; is &lt;code&gt;Creator&lt;/code&gt;. * &lt;p&gt; * * In this example, the template method &lt;code&gt;decorate(String)&lt;/code&gt; calls * modifies a string in three steps and returns the result. The SimpleCreator * does not change the string much, but adds a period at the end of it. The * FancyCreator turns the string to lowercase, then capitalizes all * consonants and adds an explanantion to it. * * &lt;p&gt;&lt;i&gt;This is the AspectJ version.&lt;/i&gt;&lt;p&gt; * * Note that &lt;i&gt;AbstractClass&lt;/i&gt; is an interface. The impelemtation of the * template method is provided by the aspect. * * @author Jan Hannemann * @author Gregor Kiczales * @version 1.0, 05/13/02 * * @see Creator * @see SimpleCreator * @see FancyCreator */ public class Main { /** * Implements the driver for the Template Method design pattern example.&lt;p&gt; * * In this example, the template method &lt;code&gt;decorate(String)&lt;/code&gt; calls * modifies a string in three steps and returns the result. The SimpleCreator * does not change the string much, but adds a period at the end of it. The * FancyCreator turns the string to lowercase, then capitalizes all * consonants and adds an explanantion to it. * * @param args the command line parameters, unused */ public static void main(String[] args) { String original = &quot;This Is The Original String To Be Processed&quot;; Creator c1 = new SimpleCreator(); Creator c2 = new FancyCreator(); System.out.println(&quot;&lt;Original&gt;&quot;); System.out.println(original); System.out.println(&quot;&lt;SimpleCreator&gt;&quot;); System.out.println(c1.decorate(original)); System.out.println(&quot;&lt;FancyCreator&gt;&quot;); System.out.println(c2.decorate(original)); } }</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:00Z SimpleCreator.java 2004-03-24T16:00:00Z 2004-03-24T16:00:00Z <br/><TEXTAREA name="code" class="java" rows="16" cols="100">package examples.templateMethod.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 &quot;License&quot;); 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 &quot;AS IS&quot; 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.pattern. * * Contributor(s): */ /** * Implements a &lt;i&gt;ConcreteClass&lt;/i&gt; that decorates strings by adding a * period at the end of them. * * @author Jan Hannemann * @author Gregor Kiczales * @version 1.0, 05/13/02 * * @see Creator * @see FancyCreator */ public class SimpleCreator implements Creator { /** * Prepares a string for decoration. Does nothing. * * @param s the string to filter * @returns the passed string */ public String prepare (String s) { return s; } /** * Filters a string. Does nothing. * * @param s the string to filter * @returns the passed string */ public String filter (String s) { return s; } /** * Finalizes a string by adding a period to it. * * @param s the string to finalize * @returns the finalized string */ public String finalize (String s) { return s+&quot;.&quot;; } }</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:00Z files.lst 2004-03-24T16:00:00Z 2004-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