package com.jguru; public class CounterBean { //declare a integer for the counter public int getCount() { //return count } public void increaseCount() { //increment count; } }