Versions Compared

Key

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

class CounterProgram {
	+void init()
	+void run()
}
note right: This class is only used for testing the Counter class

CounterProgram --> Counter : counter

...