super(tableau);
JPanel component = new JPanel();
component.setLayout(new BoxLayout(component, BoxLayout.Y_AXIS));
_shellTextArea = new ShellTextArea();
_shellTextArea.setInterpreter(ExecShellTableau.this);
_shellTextArea.mainPrompt = "% ";
component.add(_shellTextArea);
getContentPane().add(component, BorderLayout.CENTER);
}