An Eclipse RCP reimplementation of bgg1tool by Nand. See http://www.nand.it/nandeck/ for the original tool.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

24 rindas
647B

  1. package xyz.veronie.bgg.ui.parts;
  2. import javax.annotation.PostConstruct;
  3. import org.eclipse.swt.SWT;
  4. import org.eclipse.swt.layout.GridData;
  5. //import org.eclipse.swt.layout.GridData;
  6. import org.eclipse.swt.widgets.Composite;
  7. import org.eclipse.swt.widgets.Label;
  8. import xyz.veronie.bgg.data.ResultConfigManager;
  9. public class BggResultPart {
  10. @PostConstruct
  11. public void createControls(Composite parent) {
  12. Composite main = new Composite(parent, SWT.FILL);
  13. Label lblTable = new Label(main, SWT.LEFT);
  14. lblTable.setText("I am a table");
  15. lblTable.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
  16. }
  17. }