Back to project page snappyfrog.
The source code is released under:
Apache License
If you think the Android project snappyfrog listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.robovm.bindings.admob.mediation; /*from w ww .ja v a2 s . c om*/ import org.robovm.apple.foundation.NSError; import org.robovm.apple.foundation.NSObject; public class GADCustomEventInterstitialDelegateAdapter implements GADCustomEventInterstitialDelegate { @Override public void didReceiveAd (GADCustomEventInterstitial customEvent, NSObject ad) { } @Override public void didFailAd (GADCustomEventInterstitial customEvent, NSError error) { } @Override public void willPresent (GADCustomEventInterstitial customEvent) { } @Override public void willDismiss (GADCustomEventInterstitial customEvent) { } @Override public void didDismiss (GADCustomEventInterstitial customEvent) { } @Override public void willLeaveApplication (GADCustomEventInterstitial customEvent) { } }