Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

PlantUML Macro
class Counter {
	int counter
	int getCounter()
	void count()
}

Attributter og operasjoner

PlantUML Macro
class Counter {
	-int counter
	+int getCounter()
	+void count()
}

Innkapsling av tilstand med private og offentlig synlighet

PlantUML Macro
interface Counter {
	int getCounter()
	void count()
}

Grensesnitt, bare operasjoner

...