Package com.opera.core.systems

Examples of com.opera.core.systems.EmulationProfile


  public boolean equals(Object o) {
    if (!(o instanceof EmulationProfile)) {
      return false;
    }

    EmulationProfile other = (EmulationProfile) o;
    return this.getProfileName().equals(other.getProfileName()) &&
           this.getResolution().getHeight() == other.getResolution().getHeight() &&
           this.getResolution().getWidth() == other.getResolution().getWidth() &&
           this.getPPI() == other.getPPI() &&
           this.getIME() == other.getIME() &&
           this.getUserAgent().equals(other.getUserAgent());

  }
View Full Code Here

TOP

Related Classes of com.opera.core.systems.EmulationProfile

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.