package ui.model; public class idCounter { private static int counter = 1; public static synchronized int nextId() { return counter++; } }