package testclasses; public class FloatBean { private float value; public float getValue(){ return value; } public void setValue(float value){ this.value = value; } }