Package com.funambol.syncclient.blackberry

Examples of com.funambol.syncclient.blackberry.StringVector.insertElementAt()


    public void setLastTimestamp(long lastTimestamp) throws DataAccessException
    {   
        // FIXME: use J2ME RecordStore here
        mailStore = PersistentStore.getPersistentObject(MAIL_LAST_TIMESTAMP_KEY);
        StringVector data = new StringVector();
        data.insertElementAt(Long.toString(lastTimestamp), 0);
        mailStore.setContents(data);
        mailStore.commit();
    }

    /**
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.