Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
PlantUML Macro
class Counter {
	private int counter
	private int end
	public Counter(int start, int end)
	public int getCounter()
	public void count()
	public void count(int increment)
}

class CounterProgram {
	public void run()
}

CounterProgram --> Counter : counter

...