| 35 | * Create package org.sophie2.base.model.book.BorderProperties class |
| 36 | The new class should extend ProObject class and have all needed properties for the borders definition: |
| 37 | * width() |
| 38 | * color() |
| 39 | |
| 40 | * Create package org.sophie2.base.model.book.Border class |
| 41 | The new class should extend ProObject class and have four properties for the left, right, bottom and top borders: |
| 42 | * BorderProperties left() |
| 43 | * BorderProperties right() |
| 44 | * BorderProperties bottom() |
| 45 | * BorderProperties top() |
| 46 | |
| 47 | * Add Border border property to the Frame |
| 48 | |
| 49 | * The demo test org.sophie2.base.model.book.BordersTets.java tests creation and changing of frames with different borders. |
| 50 | |