Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 36029
Collapse All | Expand All

(-)extensions/org/eclipse/ui/dialogs/ResourceListSelectionDialog.java (+18 lines)
Lines 67-72 Link Here
67
    Table folderNames;
67
    Table folderNames;
68
68
69
    String patternString;
69
    String patternString;
70
    
71
    String initialPattern;
70
72
71
    IContainer container;
73
    IContainer container;
72
74
Lines 498-503 Link Here
498
        }
500
        }
499
            
501
            
500
        applyDialogFont(dialogArea);
502
        applyDialogFont(dialogArea);
503
504
        if(null != initialPattern)  {
505
        	pattern.setText(initialPattern);
506
        	refresh(false);
507
        }
508
509
        
501
        return dialogArea;
510
        return dialogArea;
502
    }
511
    }
503
512
Lines 755-760 Link Here
755
    protected void setShowDerived(boolean show) {
764
    protected void setShowDerived(boolean show) {
756
        showDerived  = show;
765
        showDerived  = show;
757
    }
766
    }
767
    
768
    /**
769
     * Sets initial pattern to dialog
770
     * 
771
     * @param pattern
772
     */
773
    public void setInitialPattern(String pattern) {
774
    	initialPattern = pattern;
775
    }
758
776
759
    /**
777
    /**
760
     * Creates a ResourceDescriptor for each IResource,
778
     * Creates a ResourceDescriptor for each IResource,

Return to bug 36029