document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. Button first = new Button("First");
  2. Button second = new Button("Second");
  3. Container cnt = new Container(new BoxLayout(BoxLayout.X_AXIS));
  4. cnt.addComponent(first);
  5. cnt.addComponent(second);
');