|
19 | 19 | import org.eclipse.swt.widgets.Composite; |
20 | 20 | import org.eclipse.swt.widgets.Control; |
21 | 21 | import org.eclipse.swt.widgets.Event; |
| 22 | +import org.eclipse.swt.widgets.Label; |
22 | 23 | import org.eclipse.swt.widgets.Listener; |
23 | 24 | import org.eclipse.swt.widgets.Shell; |
24 | 25 | import org.eclipse.swt.widgets.Text; |
@@ -107,6 +108,9 @@ private void createFileAreaControls( Composite area ) { |
107 | 108 | filePatternText = new Text( area, SWT.BORDER ); |
108 | 109 | filePatternText.setLayoutData( new GridData( SWT.FILL, SWT.CENTER, true, false ) ); |
109 | 110 | addIndent( filePatternText ); |
| 111 | + Label label = new Label( area, SWT.NONE ); |
| 112 | + label.setText( "(* = any string, ? = any character)" ); |
| 113 | + addIndent( label ); |
110 | 114 | } |
111 | 115 |
|
112 | 116 | private void addFileRadioListeners() { |
@@ -146,6 +150,9 @@ private void createFolderAreaControls( Composite area ) { |
146 | 150 | folderPatternText = new Text( area, SWT.BORDER ); |
147 | 151 | folderPatternText.setLayoutData( new GridData( SWT.FILL, SWT.CENTER, true, false ) ); |
148 | 152 | addIndent( folderPatternText ); |
| 153 | + Label label = new Label( area, SWT.NONE ); |
| 154 | + label.setText( "(empty for project root folder)" ); |
| 155 | + addIndent( label ); |
149 | 156 | includeSubFoldersCheckbox = new Button( area, SWT.CHECK ); |
150 | 157 | includeSubFoldersCheckbox.setText( "including all subfolders" ); |
151 | 158 | addIndent( includeSubFoldersCheckbox ); |
|
0 commit comments