List of usage examples for android.os Parcelable interface-usage
From source file net.exclaimindustries.geohashdroid.util.KnownLocation.java
/** * This represents a single known location. It's got a LatLng and a name, as * well as a way to serialize itself out to a preference, mostly by making * itself into a JSON chunk. */ public class KnownLocation implements Parcelable {
From source file com.clover.sdk.v3.apps.AndroidVersion.java
@SuppressWarnings("all") public final class AndroidVersion implements android.os.Parcelable, com.clover.sdk.v3.Validator, com.clover.sdk.JSONifiable { public java.lang.String getId() { return genClient.cacheGet(CacheKey.id);
From source file com.android.emailcommon.provider.HostAuth.java
public class HostAuth extends EmailContent implements Parcelable { public static final String TABLE_NAME = "HostAuth"; public static Uri CONTENT_URI; public static void initHostAuth() { CONTENT_URI = Uri.parse(EmailContent.CONTENT_URI + "/hostauth");
From source file com.clover.sdk.v3.employees.Employee.java
@SuppressWarnings("all") public final class Employee implements android.os.Parcelable, com.clover.sdk.v3.Validator, com.clover.sdk.JSONifiable { /** * Unique identifier
From source file com.facebook.login.LoginMethodHandler.java
abstract class LoginMethodHandler implements Parcelable { Map<String, String> methodLoggingExtras; protected LoginClient loginClient; LoginMethodHandler(LoginClient loginClient) { this.loginClient = loginClient;
From source file com.vk.sdkweb.api.model.VKApiCommunityFull.java
/** * Represents full community profile. */ @SuppressWarnings("unused") public class VKApiCommunityFull extends VKApiCommunity implements Parcelable {
From source file com.vk.sdk.api.model.VKApiCommunityFull.java
/** * Represents full community profile. */ @SuppressWarnings("unused") public class VKApiCommunityFull extends VKApiCommunity implements Parcelable {
From source file com.nextgis.firereporter.ScanexNotificationItem.java
public class ScanexNotificationItem implements Parcelable { public static final char DEGREE_CHAR = (char) 0x00B0; private long nID; private Date dt; private int nIconId; private double X, Y;
From source file com.clover.sdk.v3.pay.PaymentRequest.java
@SuppressWarnings("all") public final class PaymentRequest implements android.os.Parcelable, com.clover.sdk.v3.Validator, com.clover.sdk.JSONifiable { /** * Unique identifier
From source file com.vk.sdkweb.api.model.VKList.java
/**
* Universal data list for VK API.
* This class is not thread-safe.
* @param <T> type of stored values.
* @see <a href="http://vk.com/dev/list">http://vk.com/dev/list</a>
*/