plugins/org.apache.geronimo.st.v21.ui/src/main/java/org/apache/geronimo/st/v21/ui/wizards/MessageDestWizard.java [83:134]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        public void createControl(Composite parent) {
            Composite composite = createComposite(parent);
            for (int i = 0; i < section.getTableColumnNames().length; i++) {
                Label label = new Label(composite, SWT.LEFT);
                String columnName = section.getTableColumnNames()[i];
                if (!columnName.endsWith(":"))
                    columnName = columnName.concat(":");
                label.setText(columnName);
                GridData data = new GridData();
                data.horizontalAlignment = GridData.FILL;
                label.setLayoutData(data);

                Text text = new Text(composite, SWT.SINGLE | SWT.BORDER);
                data = new GridData(GridData.HORIZONTAL_ALIGN_FILL
                        | GridData.VERTICAL_ALIGN_FILL);
                data.grabExcessHorizontalSpace = true;
                data.widthHint = 100;
                text.setLayoutData(data);
                if (eObject != null) {
                    if (i > 2) {
                        // get the pattern value
                        Pattern pattern = ((MessageDestination) eObject).getPattern();
                        String value = null;
                        try {
                            value = (String) JAXBUtils.getValue(pattern,getTableColumnEAttributes()[i]);
                        } catch (Exception e) {
                            MessageDialog.openError(Display.getCurrent().getActiveShell(), Messages.error, e.getMessage());
                        }
                        if (value != null) {
                            text.setText(value);
                        }                        
                    }
                    else
                    {
                        String value = null;
                        try {
                            value = (String) JAXBUtils.getValue(eObject,getTableColumnEAttributes()[i]);
                        } catch (Exception e) {
                            MessageDialog.openError(Display.getCurrent().getActiveShell(), Messages.error, e.getMessage());
                        }
                        if (value != null) {
                            text.setText(value);
                        }
                    }
                }
                textEntries[i] = text;
            }

            doCustom(composite);
            setControl(composite);
            textEntries[0].setFocus();
        }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



plugins/org.apache.geronimo.st.v30.ui/src/main/java/org/apache/geronimo/st/v30/ui/wizards/MessageDestWizard.java [83:134]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        public void createControl(Composite parent) {
            Composite composite = createComposite(parent);
            for (int i = 0; i < section.getTableColumnNames().length; i++) {
                Label label = new Label(composite, SWT.LEFT);
                String columnName = section.getTableColumnNames()[i];
                if (!columnName.endsWith(":"))
                    columnName = columnName.concat(":");
                label.setText(columnName);
                GridData data = new GridData();
                data.horizontalAlignment = GridData.FILL;
                label.setLayoutData(data);

                Text text = new Text(composite, SWT.SINGLE | SWT.BORDER);
                data = new GridData(GridData.HORIZONTAL_ALIGN_FILL
                        | GridData.VERTICAL_ALIGN_FILL);
                data.grabExcessHorizontalSpace = true;
                data.widthHint = 100;
                text.setLayoutData(data);
                if (eObject != null) {
                    if (i > 2) {
                        // get the pattern value
                        Pattern pattern = ((MessageDestination) eObject).getPattern();
                        String value = null;
                        try {
                            value = (String) JAXBUtils.getValue(pattern,getTableColumnEAttributes()[i]);
                        } catch (Exception e) {
                            MessageDialog.openError(Display.getCurrent().getActiveShell(), Messages.error, e.getMessage());
                        }
                        if (value != null) {
                            text.setText(value);
                        }                        
                    }
                    else
                    {
                        String value = null;
                        try {
                            value = (String) JAXBUtils.getValue(eObject,getTableColumnEAttributes()[i]);
                        } catch (Exception e) {
                            MessageDialog.openError(Display.getCurrent().getActiveShell(), Messages.error, e.getMessage());
                        }
                        if (value != null) {
                            text.setText(value);
                        }
                    }
                }
                textEntries[i] = text;
            }

            doCustom(composite);
            setControl(composite);
            textEntries[0].setFocus();
        }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



