@@ -97,7 +97,7 @@ public int openEditor(Shell parent) {
9797 if (Window .OK == retCode ) {
9898 this .mFilterData = this .getFilterDataFromDialog ();
9999
100- if (!mDialog .isRecursivlyExcludeSubTree ()) {
100+ if (!mDialog .isRecursivelyExcludeSubTree ()) {
101101 mFilterData .add (PackageFilter .RECURSE_OFF_MARKER );
102102 }
103103 }
@@ -178,7 +178,7 @@ private void initCheckedTreeSelectionDialog() {
178178
179179 this .mDialog .setInitialSelections (selectedElements .toArray ());
180180 this .mDialog .setExpandedElements (expandedElements .toArray ());
181- this .mDialog .setRecursivlyExcludeSubTree (recurse );
181+ this .mDialog .setRecursivelyExcludeSubTree (recurse );
182182 }
183183 }
184184
@@ -352,7 +352,7 @@ public class CheckedTreeSelectionDialog extends SelectionStatusDialog {
352352
353353 private Object [] mExpandedElements ;
354354
355- private boolean mRecursivlyExcludeSubPackages = true ;
355+ private boolean mRecursivelyExcludeSubPackages = true ;
356356
357357 /**
358358 * Constructs an instance of <code>ElementTreeSelectionDialog</code>.
@@ -420,23 +420,23 @@ public void setSize(int width, int height) {
420420 }
421421
422422 /**
423- * Sets if subtree should be recursivly excluded. Default is true.
423+ * Sets if subtree should be recursively excluded. Default is true.
424424 *
425- * @param recursivlyExcludeSubTree
425+ * @param recursivelyExcludeSubTree
426426 * the recursive checking state
427427 */
428- public void setRecursivlyExcludeSubTree (boolean recursivlyExcludeSubTree ) {
428+ public void setRecursivelyExcludeSubTree (boolean recursivelyExcludeSubTree ) {
429429
430- mRecursivlyExcludeSubPackages = recursivlyExcludeSubTree ;
430+ mRecursivelyExcludeSubPackages = recursivelyExcludeSubTree ;
431431 }
432432
433433 /**
434- * Returns if the subtrees should be recursivly excluded.
434+ * Returns if the subtrees should be recursively excluded.
435435 *
436436 * @return <code>true</code> if subtrees should be excluded
437437 */
438- protected boolean isRecursivlyExcludeSubTree () {
439- return mRecursivlyExcludeSubPackages ;
438+ protected boolean isRecursivelyExcludeSubTree () {
439+ return mRecursivelyExcludeSubPackages ;
440440 }
441441
442442 /*
@@ -468,7 +468,7 @@ protected void computeResult() {
468468
469469 List <Object > checked = Arrays .asList (mViewer .getCheckedElements ());
470470
471- if (!mRecursivlyExcludeSubPackages ) {
471+ if (!mRecursivelyExcludeSubPackages ) {
472472 setResult (checked );
473473 } else {
474474
@@ -493,18 +493,18 @@ protected Control createButtonBar(Composite parent) {
493493 composite .setLayoutData (new GridData (GridData .FILL_HORIZONTAL ));
494494
495495 mBtnRecurseSubPackages = new Button (composite , SWT .CHECK );
496- mBtnRecurseSubPackages .setText ("Recursivly exclude sub-packages" );
496+ mBtnRecurseSubPackages .setText ("Recursively exclude sub-packages" );
497497 GridData gd = new GridData ();
498498 gd .horizontalAlignment = GridData .BEGINNING ;
499499 gd .horizontalIndent = 5 ;
500500 mBtnRecurseSubPackages .setLayoutData (gd );
501501
502- mBtnRecurseSubPackages .setSelection (mRecursivlyExcludeSubPackages );
502+ mBtnRecurseSubPackages .setSelection (mRecursivelyExcludeSubPackages );
503503 mBtnRecurseSubPackages .addSelectionListener (new SelectionListener () {
504504
505505 @ Override
506506 public void widgetSelected (SelectionEvent e ) {
507- mRecursivlyExcludeSubPackages = mBtnRecurseSubPackages .getSelection ();
507+ mRecursivelyExcludeSubPackages = mBtnRecurseSubPackages .getSelection ();
508508 adaptRecurseBehaviour ();
509509 }
510510
@@ -565,9 +565,9 @@ public void checkStateChanged(CheckStateChangedEvent event) {
565565
566566 IContainer element = (IContainer ) event .getElement ();
567567
568- if (isRecursivlyExcludeSubTree () && !isGrayed (element )) {
568+ if (isRecursivelyExcludeSubTree () && !isGrayed (element )) {
569569 setSubElementsGrayedChecked (element , event .getChecked ());
570- } else if (isRecursivlyExcludeSubTree () && isGrayed (element )) {
570+ } else if (isRecursivelyExcludeSubTree () && isGrayed (element )) {
571571 mViewer .setGrayChecked (element , true );
572572 }
573573 }
@@ -591,7 +591,7 @@ private boolean evaluateIfTreeEmpty(Object input) {
591591
592592 private void adaptRecurseBehaviour () {
593593
594- if (isRecursivlyExcludeSubTree ()) {
594+ if (isRecursivelyExcludeSubTree ()) {
595595
596596 Object [] checked = mViewer .getCheckedElements ();
597597 for (Object element : checked ) {
0 commit comments