package com.smartgwt.client.docs; /** * <h3>Integration with Phonegap</h3> * <P> Phonegap documentation, getting started, programming guides are <a href='http://www.phonegap.com/' * onclick="window.open('http://www.phonegap.com/');return false;">here</a>. The Phonegap sample application provides an * example of accessing a device's Contacts db using Smart GWT. Phonegap exposes a Contacts API which allows one to find, * create and remove contacts from the devices db. Unlike Titanium, which provides many native UI components, Phonegap * relies on 3rd party frameworks for these UI components. Additionally, Phonegap provides no transitions or other * animation effects normally accessible in native applications. <P> The Phonegap Contact object holds the following * properties: <ul> <li>id</li> <li>displayName</li> <li>name</li> <li>nickname</li> <li>phoneNumbers</li> <li>emails</li> * <li>addresses</li> <li>ims</li> <li>organizations</li> <li>revision</li> <li>birthday</li> <li>gender</li> <li>note</li> * <li>photos</li> <li>categories</li> <li>urls</li> <li>timezone</li> </ul> */ public interface PhonegapIntegration { }