00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 package org.jaebi.midlet.bt;
00012
00017 public interface DiscovererState {
00019 public static final int READY = 0;
00020
00022 public static final int DEVICE_SEARCH = 1;
00023
00027 public static final int DISCOVERY_ERROR = 2;
00028
00030 public static final int SERVICE_SEARCH = 3;
00031
00033 public static final int NEW_SERVICE_SEARCH_ERROR = 4;
00034
00041 public static final int NEW_SERVICE_SEARCH_COMPLETE = 5;
00042
00043 public int getState();
00044 }