package javax.microedition.location;

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

public class LandmarkStore
{

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