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 Francais
26  {
27      public void neuf()
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      }
38  
39      public void dix()
40      {
41          String one = "one";
42          String two = "two";
43          String three = "three";
44          String four = "four";
45          String five = "five";
46          String six = "six";
47          String seven = "seven";
48          String eight = "eight";
49          String nine = "nine";
50      }
51  
52      public void onze()
53      {
54          String one = "one";
55          String two = "two";
56          String three = "three";
57          String four = "four";
58          String five = "five";
59          String six = "six";
60          String seven = "seven";
61          String eight = "eight";
62          String nine = "nine";
63          String ten = "ten";
64      }
65  }