~ubuntu-branches/ubuntu/natty/aspectj/natty

« back to all changes in this revision

Viewing changes to org.aspectj/modules/docs/sandbox/ubc-design-patterns/src/ca/ubc/cs/spl/aspectPatterns/examples/facade/java/StringTransformer.java

  • Committer: Bazaar Package Importer
  • Author(s): Damien Raude-Morvan
  • Date: 2009-10-04 16:37:23 UTC
  • mfrom: (1.1.3 upstream) (3.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20091004163723-ck4y7j7fhjxskkie
Tags: 1.6.6+dfsg-1
* New upstream release.
  - Update 02_use_gjdoc.diff patch
* Update my email address

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
package ca.ubc.cs.spl.aspectPatterns.examples.facade.java;
2
 
 
3
 
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
4
 
 *
5
 
 * This file is part of the design patterns project at UBC
6
 
 *
7
 
 * The contents of this file are subject to the Mozilla Public License
8
 
 * Version 1.1 (the "License"); you may not use this file except in
9
 
 * compliance with the License. You may obtain a copy of the License at
10
 
 * either http://www.mozilla.org/MPL/ or http://aspectj.org/MPL/.
11
 
 *
12
 
 * Software distributed under the License is distributed on an "AS IS" basis,
13
 
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
14
 
 * for the specific language governing rights and limitations under the
15
 
 * License.
16
 
 *
17
 
 * The Original Code is ca.ubc.cs.spl.aspectPatterns.
18
 
 * 
19
 
 * For more details and the latest version of this code, please see:
20
 
 * http://www.cs.ubc.ca/labs/spl/projects/aodps.html
21
 
 *
22
 
 * Contributor(s):   
23
 
 */
24
 
 
25
 
/**
26
 
 * Implements basic string manipulation facilities.
27
 
 *
28
 
 * @author  Jan Hannemann
29
 
 * @author  Gregor Kiczales
30
 
 * @version 1.1, 02/11/04
31
 
 */
32
 
 
33
 
public class StringTransformer {
34
 
 
35
 
    /**
36
 
     * Transforms a string to upper case
37
 
     *
38
 
     * @param s the string to transform
39
 
     * @returns the transformed string
40
 
     */
41
 
 
42
 
    public static String transformToUpper(String s) {
43
 
        return s.toUpperCase();
44
 
    }
45
 
                        
46
 
    /**
47
 
     * Transforms a string to lower case
48
 
     *
49
 
     * @param s the string to transform
50
 
     * @returns the transformed string
51
 
     */
52
 
 
53
 
    public static String transformToLower(String s) {
54
 
        return s.toLowerCase();
55
 
    }
56
 
}
 
 
b'\\ No newline at end of file'