KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > fractal > julia > conform > components > Y


1 /***
2  * Julia: France Telecom's implementation of the Fractal API
3  * Copyright (C) 2001-2002 France Telecom R&D
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18  *
19  * Contact: Eric.Bruneton@rd.francetelecom.com
20  *
21  * Author: Eric Bruneton
22  */

23
24 package org.objectweb.fractal.julia.conform.components;
25
26 import org.objectweb.fractal.julia.conform.components.I;
27
28 public class Y implements I {
29
30   // invalid component class for components with dependencies:
31
// does not implement BindingController
32

33   public void m (boolean v) {
34   }
35
36   public void m (byte v) {
37   }
38
39   public void m (char v) {
40   }
41
42   public void m (short v) {
43   }
44
45   public void m (int v) {
46   }
47
48   public void m (long v) {
49   }
50
51   public void m (float v) {
52   }
53
54   public void m (double v) {
55   }
56
57   public void m (String JavaDoc v) {
58   }
59
60   public void m (String JavaDoc[] v) {
61   }
62
63   public boolean n (boolean v, String JavaDoc[] w) {
64     return v;
65   }
66
67   public byte n (byte v, String JavaDoc w) {
68     return v;
69   }
70
71   public char n (char v, double w) {
72     return v;
73   }
74
75   public short n (short v, float w) {
76     return v;
77   }
78
79   public int n (int v, long w) {
80     return v;
81   }
82
83   public long n (long v, int w) {
84     return v;
85   }
86
87   public float n (float v, short w) {
88     return v;
89   }
90
91   public double n (double v, char w) {
92     return v;
93   }
94
95   public String JavaDoc n (String JavaDoc v, byte w) {
96     return v;
97   }
98
99   public String JavaDoc[] n (String JavaDoc[] v, boolean w) {
100     return v;
101   }
102 }
103
Popular Tags