Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* MicroEmulator
* Copyright (C) 2001 Bartek Teodorczyk
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package javax.microedition.rms;
import org.microemu.MIDletBridge;
public class RecordStore
{
public static final int AUTHMODE_PRIVATE = 0;
public static final int AUTHMODE_ANY = 1;
public static void deleteRecordStore(String recordStoreName)
throws RecordStoreException, RecordStoreNotFoundException
{
MIDletBridge.getRecordStoreManager().deleteRecordStore(recordStoreName);
}
public static String[] listRecordStores()
{
return MIDletBridge.getRecordStoreManager().listRecordStores();
}
public static RecordStore openRecordStore(String recordStoreName, boolean createIfNecessary)
throws RecordStoreException, RecordStoreFullException, RecordStoreNotFoundException
{
return MIDletBridge.getRecordStoreManager().openRecordStore(recordStoreName, createIfNecessary);
}
public static RecordStore openRecordStore(String recordStoreName, boolean createIfNecessary, int authmode, boolean writable)
throws RecordStoreException, RecordStoreFullException, RecordStoreNotFoundException
{
// TODO Not yet implemented
return openRecordStore(recordStoreName, createIfNecessary);
}
public static RecordStore openRecordStore(String recordStoreName, String vendorName, String suiteName)
throws RecordStoreException, RecordStoreNotFoundException
{
// TODO Not yet implemented
return openRecordStore(recordStoreName, false);
}
public void closeRecordStore()
throws RecordStoreNotOpenException, RecordStoreException
{
// Must be overriden
}
public String getName()
throws RecordStoreNotOpenException
{
// Must be overriden
return null;
}
public int getVersion()
throws RecordStoreNotOpenException
{
// Must be overriden
return -1;
}
public int getNumRecords()
throws RecordStoreNotOpenException
{
// Must be overriden
return -1;
}
public int getSize()
throws RecordStoreNotOpenException
{
// Must be overriden
return -1;
}
public int getSizeAvailable()
throws RecordStoreNotOpenException
{
// Must be overriden
return -1;
}
public long getLastModified()
throws RecordStoreNotOpenException
{
// Must be overriden
return -1;
}
public void addRecordListener(RecordListener listener)
{
// Must be overriden
}
public void removeRecordListener(RecordListener listener)
{
// Must be overriden
}
public int getNextRecordID()
throws RecordStoreNotOpenException, RecordStoreException
{
// Must be overriden
return -1;
}
public int addRecord(byte[] data, int offset, int numBytes)
throws RecordStoreNotOpenException, RecordStoreException, RecordStoreFullException
{
// Must be overriden
return -1;
}
public void deleteRecord(int recordId)
throws RecordStoreNotOpenException, InvalidRecordIDException, RecordStoreException
{
// Must be overriden
}
public int getRecordSize(int recordId)
throws RecordStoreNotOpenException, InvalidRecordIDException, RecordStoreException
{
// Must be overriden
return -1;
}
public int getRecord(int recordId, byte[] buffer, int offset)
throws RecordStoreNotOpenException, InvalidRecordIDException, RecordStoreException
{
// Must be overriden
return -1;
}
public byte[] getRecord(int recordId)
throws RecordStoreNotOpenException, InvalidRecordIDException, RecordStoreException
{
// Must be overriden
return null;
}
public void setMode(int authmode, boolean writable)
throws RecordStoreException
{
// TODO Not yet implemented
}
public void setRecord(int recordId, byte[] newData, int offset, int numBytes)
throws RecordStoreNotOpenException, InvalidRecordIDException, RecordStoreException, RecordStoreFullException
{
// Must be overriden
}
public RecordEnumeration enumerateRecords(RecordFilter filter, RecordComparator comparator, boolean keepUpdated)
throws RecordStoreNotOpenException
{
// Must be overriden
return null;
}
}