Home | History | Annotate | Download | only in custom
      1 /*
      2  * Copyright (C) 2014 Trillian Mobile AB
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 package com.badlogic.gdx.backends.iosrobovm.custom;
     17 
     18 /*<imports>*/
     19 import java.io.*;
     20 import java.nio.*;
     21 import java.util.*;
     22 import org.robovm.objc.*;
     23 import org.robovm.objc.annotation.*;
     24 import org.robovm.objc.block.*;
     25 import org.robovm.rt.*;
     26 import org.robovm.rt.bro.*;
     27 import org.robovm.rt.bro.annotation.*;
     28 import org.robovm.rt.bro.ptr.*;
     29 import org.robovm.apple.foundation.*;
     30 import org.robovm.apple.coreanimation.*;
     31 import org.robovm.apple.coregraphics.*;
     32 import org.robovm.apple.coredata.*;
     33 import org.robovm.apple.coreimage.*;
     34 import org.robovm.apple.coretext.*;
     35 import org.robovm.apple.corelocation.*;
     36 /*</imports>*/
     37 
     38 /*<javadoc>*/
     39 
     40 /*</javadoc>*/
     41 /*<annotations>*//*</annotations>*/
     42 /*<visibility>*/public/*</visibility>*/ interface /*<name>*/UIAccelerometerDelegate/*</name>*/
     43     /*<implements>*/extends NSObjectProtocol/*</implements>*/ {
     44 
     45     /*<ptr>*/
     46     /*</ptr>*/
     47     /*<bind>*/
     48     /*</bind>*/
     49     /*<constants>*//*</constants>*/
     50     /*<properties>*/
     51 
     52     /*</properties>*/
     53     /*<methods>*/
     54     /**
     55      * @since Available in iOS 2.0 and later.
     56      * @deprecated Deprecated in iOS 5.0.
     57      */
     58     @Deprecated
     59     @Method(selector = "accelerometer:didAccelerate:")
     60     void didAccelerate(UIAccelerometer accelerometer, UIAcceleration acceleration);
     61     /*</methods>*/
     62     /*<adapter>*/
     63     /*</adapter>*/
     64 }