package org.opendolphin.demo.lazy; class Counter { int count = 0; void increment() { count++; } int getValue() { return count; } }