Ignore:
Timestamp:
12/15/05 20:59:40 (19 years ago)
Author:
boris
Message:
  • added class type selection retention to the new class wizard dialog, as requested by ze boss !
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/org.modelica.mdt.test/src/org/modelica/mdt/test/util/Utility.java

    r228 r235  
    154154     * on the screen
    155155     */
    156     public static Button findFinishButton()
     156    public static Button findButtonByText(String buttonText)
    157157    {
    158158        BasicFinder finder =  /* find finish button */
     
    161161        try
    162162        {
    163             return (Button) finder.find(new TextMatcher("&Finish"));
     163            return (Button) finder.find(new TextMatcher(buttonText));
    164164        }
    165165        catch (WidgetNotFoundException e)
Note: See TracChangeset for help on using the changeset viewer.