blob: de7068c5f8d4cc0d47e3fe9f5b339b66957c1c33 [file] [log] [blame]
package com.xtremelabs.robolectric.shadows;
import android.bluetooth.BluetoothDevice;
import com.xtremelabs.robolectric.internal.Implementation;
import com.xtremelabs.robolectric.internal.Implements;
@Implements(BluetoothDevice.class)
public class ShadowBluetoothDevice {
private String name;
public void setName(String name) {
this.name = name;
}
@Implementation
public String getName() {
return name;
}
}