package com.lgnortel.profile.olt.manager.view.igmp;
import javax.swing.JTable;
import com.lgnortel.profile.common.ProfileComplexChildView;
import com.lgnortel.r4.r4equipment.common.ManagementTableIF;
public class IgmpProfileIpAddressView extends ProfileComplexChildView {
/**
*
*/
private static final long serialVersionUID = -7124602337920499544L;
public IgmpProfileIpAddressView(String title, ManagementTableIF controller) {
super(title, controller);
}
protected void resizeTable() {
table.setAutoResizeMode(JTable.AUTO_RESIZE_ALL_COLUMNS);
}
}
|