com.bugvm.apple.mapkit.MKMapViewDelegateAdapter Maven / Gradle / Ivy
/*
* Copyright (C) 2013-2015 RoboVM AB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.bugvm.apple.mapkit;
/**/
import java.io.*;
import java.nio.*;
import java.util.*;
import com.bugvm.objc.*;
import com.bugvm.objc.annotation.*;
import com.bugvm.objc.block.*;
import com.bugvm.rt.*;
import com.bugvm.rt.annotation.*;
import com.bugvm.rt.bro.*;
import com.bugvm.rt.bro.annotation.*;
import com.bugvm.rt.bro.ptr.*;
import com.bugvm.apple.foundation.*;
import com.bugvm.apple.coregraphics.*;
import com.bugvm.apple.corelocation.*;
import com.bugvm.apple.uikit.*;
import com.bugvm.apple.dispatch.*;
/* */
/**/
/* */
/**//* */
/**/public/* */ class /**/MKMapViewDelegateAdapter/* */
extends /**/NSObject/* */
/**/implements MKMapViewDelegate/* */ {
/**/
/* */
/**/
/* */
/**//* */
/**//* */
/**/
/* */
/**//* */
/**/
@NotImplemented("mapView:regionWillChangeAnimated:")
public void willChangeRegion(MKMapView mapView, boolean animated) {}
@NotImplemented("mapView:regionDidChangeAnimated:")
public void didChangeRegion(MKMapView mapView, boolean animated) {}
@NotImplemented("mapViewWillStartLoadingMap:")
public void willStartLoadingMap(MKMapView mapView) {}
@NotImplemented("mapViewDidFinishLoadingMap:")
public void didFinishLoadingMap(MKMapView mapView) {}
@NotImplemented("mapViewDidFailLoadingMap:withError:")
public void didFailLoadingMap(MKMapView mapView, NSError error) {}
/**
* @since Available in iOS 7.0 and later.
*/
@NotImplemented("mapViewWillStartRenderingMap:")
public void willStartRenderingMap(MKMapView mapView) {}
/**
* @since Available in iOS 7.0 and later.
*/
@NotImplemented("mapViewDidFinishRenderingMap:fullyRendered:")
public void didFinishRenderingMap(MKMapView mapView, boolean fullyRendered) {}
@NotImplemented("mapView:viewForAnnotation:")
public MKAnnotationView getAnnotationView(MKMapView mapView, MKAnnotation annotation) { return null; }
@NotImplemented("mapView:didAddAnnotationViews:")
public void didAddAnnotationViews(MKMapView mapView, NSArray views) {}
@NotImplemented("mapView:annotationView:calloutAccessoryControlTapped:")
public void calloutAccessoryControlTapped(MKMapView mapView, MKAnnotationView view, UIControl control) {}
/**
* @since Available in iOS 4.0 and later.
*/
@NotImplemented("mapView:didSelectAnnotationView:")
public void didSelectAnnotationView(MKMapView mapView, MKAnnotationView view) {}
/**
* @since Available in iOS 4.0 and later.
*/
@NotImplemented("mapView:didDeselectAnnotationView:")
public void didDeselectAnnotationView(MKMapView mapView, MKAnnotationView view) {}
/**
* @since Available in iOS 4.0 and later.
*/
@NotImplemented("mapViewWillStartLocatingUser:")
public void willStartLocatingUser(MKMapView mapView) {}
/**
* @since Available in iOS 4.0 and later.
*/
@NotImplemented("mapViewDidStopLocatingUser:")
public void didStopLocatingUser(MKMapView mapView) {}
/**
* @since Available in iOS 4.0 and later.
*/
@NotImplemented("mapView:didUpdateUserLocation:")
public void didUpdateUserLocation(MKMapView mapView, MKUserLocation userLocation) {}
/**
* @since Available in iOS 4.0 and later.
*/
@NotImplemented("mapView:didFailToLocateUserWithError:")
public void didFailToLocateUser(MKMapView mapView, NSError error) {}
/**
* @since Available in iOS 4.0 and later.
*/
@NotImplemented("mapView:annotationView:didChangeDragState:fromOldState:")
public void didChangeDragState(MKMapView mapView, MKAnnotationView view, MKAnnotationViewDragState newState, MKAnnotationViewDragState oldState) {}
/**
* @since Available in iOS 5.0 and later.
*/
@NotImplemented("mapView:didChangeUserTrackingMode:animated:")
public void didChangeUserTrackingMode(MKMapView mapView, MKUserTrackingMode mode, boolean animated) {}
/**
* @since Available in iOS 7.0 and later.
*/
@NotImplemented("mapView:rendererForOverlay:")
public MKOverlayRenderer getOverlayRenderer(MKMapView mapView, MKOverlay overlay) { return null; }
/**
* @since Available in iOS 7.0 and later.
*/
@NotImplemented("mapView:didAddOverlayRenderers:")
public void didAddOverlayRenderers(MKMapView mapView, NSArray renderers) {}
/**
* @since Available in iOS 4.0 and later.
* @deprecated Deprecated in iOS 7.0.
*/
@Deprecated
@NotImplemented("mapView:viewForOverlay:")
public MKOverlayView getOverlayView(MKMapView mapView, MKOverlay overlay) { return null; }
/**
* @since Available in iOS 4.0 and later.
* @deprecated Deprecated in iOS 7.0.
*/
@Deprecated
@NotImplemented("mapView:didAddOverlayViews:")
public void didAddOverlayViews(MKMapView mapView, NSArray overlayViews) {}
/* */
}