Package com.funambol.syncclient.blackberry

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


        long lastTimestamp = 0l;//this is 0L (long 0)
        mailStore = PersistentStore.getPersistentObject(MAIL_LAST_TIMESTAMP_KEY);
        if (mailStore.getContents() != null)
        {
            StringVector data = (StringVector)mailStore.getContents();
            if (data.elementAt(0) != null)
            {
                lastTimestamp = Long.parseLong((String)data.elementAt(0));
            }
        }
       
View Full Code Here


        if (mailStore.getContents() != null)
        {
            StringVector data = (StringVector)mailStore.getContents();
            if (data.elementAt(0) != null)
            {
                lastTimestamp = Long.parseLong((String)data.elementAt(0));
            }
        }
       
        return lastTimestamp;
    }
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.