1 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 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 v) { 58 } 59 60 public void m (String [] v) { 61 } 62 63 public boolean n (boolean v, String [] w) { 64 return v; 65 } 66 67 public byte n (byte v, String 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 n (String v, byte w) { 96 return v; 97 } 98 99 public String [] n (String [] v, boolean w) { 100 return v; 101 } 102 } 103 | Popular Tags |