celldevs_design.mvc 526 B

12345678910111213141516171819202122232425262728
  1. ComplexAttribute ActionCode {}
  2. SimpleAttribute String {}
  3. SimpleAttribute Natural {}
  4. SimpleAttribute Integer {}
  5. SimpleAttribute Boolean {}
  6. Class Component {
  7. width: Natural
  8. height: Natural
  9. wrappedBorder: Boolean
  10. initialCellValue: Integer
  11. }
  12. Class NeighborDefinition {
  13. x: Integer
  14. y: Integer
  15. }
  16. Association ComponentNeigbor(Component, NeighborDefinition) {}
  17. Class SpecificCellValue {
  18. value: Integer
  19. }
  20. Association ComponentSpecificValue(Component, SpecificCellValue) {
  21. x: Natural
  22. y: Natural
  23. }