Package com.opera.core.systems.preferences.OperaScopePreferences

Examples of com.opera.core.systems.preferences.OperaScopePreferences.ScopePreference


    assertTrue(preferences.get("Developer Tools", "Proxy Auto Connect").isEnabled());
  }

  @Test
  public void testReset() {
    ScopePreference preference = preferences.get("Developer Tools", "Proxy Host");
    preference.setValue("4.3.2.1");
    preference.reset();
    assertEquals("127.0.0.1", preference.getValue());
  }
View Full Code Here

TOP

Related Classes of com.opera.core.systems.preferences.OperaScopePreferences.ScopePreference

Copyright © 2018 www.massapicom. 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.