Example usage for android.os Parcelable interface-usage

List of usage examples for android.os Parcelable interface-usage

Introduction

In this page you can find the example usage for android.os Parcelable interface-usage.

Usage

From source file com.tigerpenguin.places.model.DayTime.java

public class DayTime extends JsonModel implements Parcelable {

    @JsonProperty(DAY)
    private DayOfWeek dayOfWeek;

    @JsonProperty(TIME)

From source file com.tigerpenguin.places.model.Period.java

public class Period extends JsonModel implements Parcelable {

    @JsonProperty(OPEN)
    private DayTime openingTime;

    @JsonProperty(CLOSE)

From source file org.openhab.habdroid.model.OpenHABSitemap.java

public class OpenHABSitemap implements Parcelable {
    private String name;
    private String label;
    private String link;
    private String icon;
    private String homepageLink;

From source file com.tigerpenguin.places.model.PlaceLocation.java

public class PlaceLocation extends JsonModel implements Parcelable {

    @JsonProperty(LATITUDE)
    private double latitude;

    @JsonProperty(LONGITUDE)

From source file me.willowcheng.makerthings.model.OpenHABSitemap.java

public class OpenHABSitemap implements Parcelable {
    private String name;
    private String label;
    private String link;
    private String icon;
    private String homepageLink;

From source file org.ambientdynamix.api.application.IContextInfo.java

/**
 * IContextInfo represents a single entity of contextual information. Concrete IContextInfo implementations provide
 * native, 'high resolution' contextual information appropriate to the given modeling domain. The IContextInfo interface
 * may also include string versions of their data type (e.g. a fully qualified class name), which can be used by capable
 * clients to cast generic IContextInfo as concrete object types. The string-based representation of the IContextInfo
 * should be encoded using a well-known string-based format, and described in the plug-in's developer documentation.

From source file com.tigerpenguin.places.model.OpeningHours.java

public class OpeningHours extends JsonModel implements Parcelable {

    @JsonProperty(OPEN_NOW)
    private boolean openNow;

    @JsonProperty(PERIODS)

From source file com.dwg.weibo.entity.Visible.java

/**
 * ???
 *
 * @author SINA
 * @since 2013-11-24
 */

From source file com.clover.sdk.v1.customer.Order.java

/**
 * A class representing a phone number associated with a customer. Instances of this object are returned
 * as part of a {@link com.clover.sdk.v1.customer.Customer} object.
 */
public class Order implements Parcelable {
    private final JSONObject data;

From source file com.ninetwozero.battlelog.datatypes.ShareableCookie.java

public class ShareableCookie implements Parcelable {

    private String name;
    private String value;
    private String domain;