| 1 | |
package org.kuali.student.common.ui.client.configurable.mvc.layouts; |
| 2 | |
|
| 3 | |
import org.kuali.student.common.ui.client.mvc.View; |
| 4 | |
|
| 5 | |
public abstract class SectionController extends ViewLayout{ |
| 6 | |
|
| 7 | |
public SectionController(String controllerId) { |
| 8 | 0 | super(controllerId); |
| 9 | 0 | } |
| 10 | |
|
| 11 | |
|
| 12 | |
@Override |
| 13 | |
public void addView(View view){ |
| 14 | 0 | super.addView(view); |
| 15 | 0 | } |
| 16 | |
|
| 17 | |
|
| 18 | |
@Override |
| 19 | |
protected void hideView(View view) { |
| 20 | |
|
| 21 | |
|
| 22 | 0 | } |
| 23 | |
|
| 24 | |
@Override |
| 25 | |
protected void renderView(View view) { |
| 26 | |
|
| 27 | |
|
| 28 | 0 | } |
| 29 | |
|
| 30 | |
} |