private static JPanel initPanel() {
final JPanel panel = new JPanel(new BorderLayout());
StringScalarBox stringBox = new StringScalarBox();
TangoKey key = new TangoKey();
TangoKeyTool.registerAttribute(key, "tango/tangotest/titan", "string_scalar");
TangoKey otherKey = new TangoKey();
TangoKeyTool.registerSettable(otherKey, false);
TangoKeyTool.registerAttribute(otherKey, "tango/tangotest/titan", "string_scalar");
TextField textfield = stringBox.createAdvancedWidget(TextField.class, key);
TextArea textArea = stringBox.createAdvancedWidget(TextArea.class, otherKey);