Home | History | Annotate | Download | only in shadows
      1 package com.xtremelabs.robolectric.shadows;
      2 
      3 import android.bluetooth.BluetoothDevice;
      4 import com.xtremelabs.robolectric.internal.Implementation;
      5 import com.xtremelabs.robolectric.internal.Implements;
      6 
      7 @Implements(BluetoothDevice.class)
      8 public class ShadowBluetoothDevice {
      9 
     10     private String name;
     11 
     12     public void setName(String name) {
     13         this.name = name;
     14     }
     15 
     16     @Implementation
     17     public String getName() {
     18         return name;
     19     }
     20 }
     21