package com.jguru; public class CounterBean { int count; public int getCount() { return count; } public void increaseCount() { count++; } }