Community
Participate
Working Groups
public KeywordsDialog(Shell shell, String selectedKeywords, java.util.List<String> validKeywords) {
super(shell);
setShellStyle(getShellStyle() | SWT.RESIZE);
StringTokenizer st = new StringTokenizer(selectedKeywords, ",", false);
this.selectedKeywords = new ArrayList<String>();
while (st.hasMoreTokens()) {
keyWordsList.addCheckStateListener(new KeywordListener());
super.createDialogArea(parent);
parent.pack();
return composite;