1 package org.apache.maven.simian;
2
3 /* ====================================================================
4 * Copyright 2001-2004 The Apache Software Foundation.
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 * ====================================================================
18 */
19
20 /**
21 *
22 * @author Aslak Hellesoy
23 * @version $Revision: 371231 $
24 */
25 public class English
26 {
27 public void eleven()
28 {
29 String one = "one";
30 String two = "two";
31 String three = "three";
32 String four = "four";
33 String five = "five";
34 String six = "six";
35 String seven = "seven";
36 String eight = "eight";
37 String nine = "nine";
38 String ten = "ten";
39 }
40
41 public void ten()
42 {
43 String one = "one";
44 String two = "two";
45 String three = "three";
46 String four = "four";
47 String five = "five";
48 String six = "six";
49 String seven = "seven";
50 String eight = "eight";
51 String nine = "nine";
52 }
53
54 public void nine()
55 {
56 String one = "one";
57 String two = "two";
58 String three = "three";
59 String four = "four";
60 String five = "five";
61 String six = "six";
62 String seven = "seven";
63 String eight = "eight";
64 }
65 }