JComponent controls;
public DescriptionView(TFModel model) {
super(model);
setLayout(new BorderLayout());
JPanel left=new Pad(5,5);
left.setBackground(Color.white);
add(left, BorderLayout.WEST);
JPanel right=new Pad(5,5);
right.setBackground(Color.white);
add(right, BorderLayout.EAST);
JPanel top=new JPanel();
add(top, BorderLayout.NORTH);
top.setLayout(new FlowLayout(FlowLayout.LEFT));
top.add(new JLabel("Notes & Comments on This Data:"));