List of usage examples for android.os Parcelable interface-usage
From source file com.nestapi.lib.API.AccessToken.java
public final class AccessToken implements Parcelable { public static final Parcelable.Creator<AccessToken> CREATOR = new Parcelable.Creator<AccessToken>() { @Override public AccessToken createFromParcel(Parcel source) { return new AccessToken(source); }
From source file com.tigerpenguin.places.model.AddressComponent.java
public class AddressComponent extends JsonModel implements Parcelable { @JsonProperty(LONG_NAME) private String longName; @JsonProperty(SHORT_NAME)
From source file edu.umich.oasis.common.ParamInfo.java
public final class ParamInfo implements Parcelable { private final String typeName; private final int paramIndex; private final Direction direction; public ParamInfo(String typeName, int paramIndex, Direction direction) {
From source file com.clover.sdk.v1.base.Reference.java
@SuppressWarnings("all") public class Reference implements android.os.Parcelable { protected String jsonString = null; protected org.json.JSONObject jsonObject = null;
From source file edu.umich.flowfence.common.ParamInfo.java
public final class ParamInfo implements Parcelable { private final String typeName; private final int paramIndex; private final Direction direction; public ParamInfo(String typeName, int paramIndex, Direction direction) {
From source file io.github.tjg1.library.norilib.SearchResult.java
/** * Search result received from the API. */ public class SearchResult implements Parcelable { //region Parcelable
From source file no.ntnu.osnap.social.models.Person.java
/** * oSNAP class representing a person/user. * * @author Emanuele 'lemrey' Di Santo */ public class Person extends Model implements Parcelable {
From source file org.androidtransfuse.integrationTest.inject.RealParcelable.java
/** * @author John Ericksen */ public class RealParcelable implements Parcelable { @SuppressWarnings("UnusedDeclaration")
From source file com.clover.sdk.v1.customer.EmailAddress.java
/**
* A class representing an email address associated with a customer. Instances of this object are returned
* by the {@link com.clover.sdk.v1.customer.ICustomerService#addEmailAddress(String customerId,
* String emailAddress, ResultStatus resultStatus)} method or as part of a
* {@link com.clover.sdk.v1.customer.Customer} object.
*/
From source file com.clover.sdk.v1.customer.PhoneNumber.java
/**
* A class representing a phone number associated with a customer. Instances of this object are returned
* by the {@link com.clover.sdk.v1.customer.ICustomerService#addPhoneNumber(String customerId,
* String emailAddress, ResultStatus resultStatus)} method or as part of a
* {@link com.clover.sdk.v1.customer.Customer} object.
*/