package javax.bluetooth;

import javax.microedition.io.Connection;

public class LocalDevice
{

 public static LocalDevice getLocalDevice() throws BluetoothStateException
 {
  return null;
 }
 
 public static boolean isPowerOn()
 {
  return false;
 }
 
 public DiscoveryAgent getDiscoveryAgent()
 {
  return null;
 }
 
 public String getFriendlyName()
 {
  return null;
 }
 
 public DeviceClass getDeviceClass()
 {
  return null;
 }
 
 public boolean setDiscoverable(int) throws BluetoothStateException
 {
  return false;
 }
 
 public static String getProperty(String)
 {
  return null;
 }
 
 public int getDiscoverable()
 {
  return 0;
 }
 
 public String getBluetoothAddress()
 {
  return null;
 }
 
 public ServiceRecord getRecord(Connection)
 {
  return null;
 }
 
 public void updateRecord(ServiceRecord) throws ServiceRegistrationException
 {
 }
 
}