Package com.funambol.syncclient.blackberry

Examples of com.funambol.syncclient.blackberry.EventCache


            event.commit();

            String uid = event.getString(Event.UID, 0);
           
            // Save the event data in cache
            EventCache cache = new EventCache();
            cache.put(uid, parser.getCacheData());
            cache.save();

            // Set the record key
            record.setKey(uid);

            list.close();
View Full Code Here


        EventParser parser = ParserFactory.getParserInstance(list, event, true);

        // Retrieve the event from cache and pass its data
        // to the parser.
        EventCache cache = new EventCache();
        String uid = event.getString(Event.UID, 0);
        parser.setCacheData(cache.get(uid));

        // Format the event.
        String data = parser.toString(event);

        return data;
View Full Code Here

TOP

Related Classes of com.funambol.syncclient.blackberry.EventCache

Copyright © 2018 www.massapicom. 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.