package javax.microedition.location;

import java.io.IOException;
import java.util.Enumeration;

public class LandmarkStore
{

 public static LandmarkStore getInstance(String)
 {
  return null;
 }
 
 public static void createLandmarkStore(String) throws LandmarkException, IOException
 {
 }
 
 public static void deleteLandmarkStore(String) throws LandmarkException, IOException
 {
 }
 
 public static String[] listLandmarkStores() throws IOException
 {
  return null;
 }
 
 public void addLandmark(Landmark, String) throws IOException
 {
 }
 
 public Enumeration getLandmarks(String, String) throws IOException
 {
  return null;
 }
 
 public Enumeration getLandmarks() throws IOException
 {
  return null;
 }
 
 public Enumeration getLandmarks(String, double, double, double, double) throws IOException
 {
  return null;
 }
 
 public void removeLandmarkFromCategory(Landmark, String) throws IOException
 {
 }
 
 public void updateLandmark(Landmark) throws LandmarkException, IOException
 {
 }
 
 public void deleteLandmark(Landmark) throws LandmarkException, IOException
 {
 }
 
 public Enumeration getCategories()
 {
  return null;
 }
 
 public void addCategory(String) throws LandmarkException, IOException
 {
 }
 
 public void deleteCategory(String) throws LandmarkException, IOException
 {
 }
 
}