Hallo, ich hab einen ViewPart, in dem ich gewissen Elemente definiere.
Das ganze sieht so in etwa aus:
Gibt es eine Möglichkeit, dass ich an einer anderen Stelle, alle definieren Elemente bekomme? Also im speziellen alle Textfelder. Irgendwie mit Viewpart.getAllText();???
Danke.
Das ganze sieht so in etwa aus:
Code:
public void createForm(Composite parent) {
Group formGroup = new Group(parent, SWT.BORDER_SOLID);
GridLayout formLayout = new GridLayout(2, false);
formGroup.setLayout(formLayout);
formGroup.setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false, 2,
1));
GridData tfDataDefault = new GridData();
tfDataDefault.horizontalAlignment = GridData.FILL;
tfDataDefault.grabExcessHorizontalSpace = true;
GridData tfDataSmall = new GridData(GridData.FILL);
Label lblVorname = new Label(formGroup, SWT.LEFT);
lblVorname.setText("Vorname:");
this.txtVorname = new Text(formGroup, SWT.LEFT | SWT.BORDER);
this.txtVorname.setLayoutData(tfDataDefault);
{...}
}
Gibt es eine Möglichkeit, dass ich an einer anderen Stelle, alle definieren Elemente bekomme? Also im speziellen alle Textfelder. Irgendwie mit Viewpart.getAllText();???
Danke.