Versions Compared

Key

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

...

PlantUML Macro
abstract class Application {
	+abstract void start(Stage)
}
class MemoryApp {
	+void start(Stage)
}
class Memory<Integer> {
}

class Text {
}
class TextField {
}
Application <|- MemoryApp
MemoryApp --> Memory: memory
MemoryApp --> Text: systemOutput
MemoryApp --> TextField: userInput
PlantUML Macro
object MemoryApp {
}
object "Memory<Integer>"Memory {
	Integer nextItem()
	acceptItem(Integer)
}

object Text {
	setText(String)	
}
object TextField {
	getText();
}
MemoryApp --> Memory: memory
MemoryApp --> Text: systemOutput
MemoryApp --> TextField: userInput

...