1 | if (h == LengthConstraintType.NONE) {↵ | | 1 | if (h == LengthConstraintType.NONE) {↵
|
2 | // find optimum height↵ | | |
|
3 | throw new RuntimeException("Not yet implemented."); ↵ | | 2 | throw new RuntimeException("Not yet implemented.");↵
|
4 | }↵ | | 3 | }↵
|
5 | else if (h == LengthConstraintType.FIXED) {↵ | | 4 | else if (h == LengthConstraintType.RANGE) {↵
|
6 | // fixed width↵ | | |
|
7 | throw new RuntimeException("Not yet implemented."); ↵ | | 5 | throw new RuntimeException("Not yet implemented.");↵
|
8 | }↵ | | 6 | }↵
|
9 | else if (h == LengthConstraintType.RANGE) {↵ | | 7 | else if (h == LengthConstraintType.FIXED) {↵
|
10 | throw new RuntimeException("Not yet implemented."); ↵ | | 8 | throw new RuntimeException("Not yet implemented.");↵
|
11 | | | 9 |
|