Examples of storePreferences()


Examples of com.eclipsesource.jshint.ui.internal.preferences.ui.IncludesView.storePreferences()

    SWTBotTable includeTable = findIncludeTable( view );
    SWTBotTable excludeTable = findExcludeTable( view );
    new TableItem( includeTable.widget, SWT.NONE ).setText( "/foo/" );
    new TableItem( excludeTable.widget, SWT.NONE ).setText( "/bar/" );

    view.storePreferences( preferences );

    assertTrue( preferences.getIncludePatterns().contains( "/foo/" ) );
    assertTrue( preferences.getExcludePatterns().contains( "/bar/" ) );
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.