1 23 24 package org.objectweb.fractal.adl.conform.components; 25 26 public class IImpl implements I, IAttributes { 27 28 private int i; 29 30 private float f; 31 32 private String s; 33 34 public void m () { 35 } 36 37 public int getInt () { 38 return i; 39 } 40 41 public void setInt (int i) { 42 this.i = i; 43 } 44 45 public float getFloat () { 46 return f; 47 } 48 49 public void setFloat (float f) { 50 this.f = f; 51 } 52 53 public String getString () { 54 return s; 55 } 56 57 public void setString (String s) { 58 this.s = s; 59 } 60 } | Popular Tags |