| 1 |
|
package org.kuali.student.common.ui.client.configurable.mvc.sections; |
| 2 |
|
|
| 3 |
|
import org.kuali.student.common.ui.client.configurable.mvc.SectionTitle; |
| 4 |
|
import org.kuali.student.common.ui.client.widgets.field.layout.layouts.TableFieldLayout; |
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
@author |
| 10 |
|
@see |
| 11 |
|
|
|
|
|
| 0% |
Uncovered Elements: 8 (8) |
Complexity: 3 |
Complexity Density: 0.6 |
|
| 12 |
|
public class TableSection extends BaseSection{ |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 13 |
0
|
public TableSection(){... |
| 14 |
0
|
init(); |
| 15 |
|
} |
| 16 |
|
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
| 17 |
0
|
public TableSection(SectionTitle title){... |
| 18 |
0
|
init(); |
| 19 |
0
|
layout.setLayoutTitle(title); |
| 20 |
|
} |
| 21 |
|
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
| 22 |
0
|
private void init() {... |
| 23 |
0
|
layout = new TableFieldLayout(); |
| 24 |
0
|
this.add(layout); |
| 25 |
|
} |
| 26 |
|
} |