Package com.google.speedtracer.client.model.HintletInterface

Examples of com.google.speedtracer.client.model.HintletInterface.ExceptionListener


    }
  }

  private void onHintletException(HintletException hintletException) {
    for (int i = 0, n = exceptionListeners.size(); i < n; i++) {
      ExceptionListener handler = exceptionListeners.get(i);
      handler.onHintletException(hintletException);
    }
  }
View Full Code Here

TOP

Related Classes of com.google.speedtracer.client.model.HintletInterface.ExceptionListener

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.