/* * Copyright (c) 2017 m2049r * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.wownero.wownerujo.data; import android.os.Parcel; import com.wownero.wownerujo.model.PendingTransaction; public class TxDataBtc extends TxData { private String xmrtoUuid; private String btcAddress; private double btcAmount; public TxDataBtc() { super(); } public TxDataBtc(TxDataBtc txDataBtc) { super(txDataBtc); } public String getXmrtoUuid() { return xmrtoUuid; } public void setXmrtoUuid(String xmrtoUuid) { this.xmrtoUuid = xmrtoUuid; } public String getBtcAddress() { return btcAddress; } public void setBtcAddress(String btcAddress) { this.btcAddress = btcAddress; } public double getBtcAmount() { return btcAmount; } public void setBtcAmount(double btcAmount) { this.btcAmount = btcAmount; } @Override public void writeToParcel(Parcel out, int flags) { super.writeToParcel(out, flags); out.writeString(xmrtoUuid); out.writeString(btcAddress); out.writeDouble(btcAmount); } // this is used to regenerate your object. All Parcelables must have a CREATOR that implements these two methods public static final Creator CREATOR = new Creator() { public TxDataBtc createFromParcel(Parcel in) { return new TxDataBtc(in); } public TxDataBtc[] newArray(int size) { return new TxDataBtc[size]; } }; protected TxDataBtc(Parcel in) { super(in); xmrtoUuid = in.readString(); btcAddress = in.readString(); btcAmount = in.readDouble(); } @Override public String toString() { StringBuffer sb = new StringBuffer(); sb.append(",xmrtoUuid:"); sb.append(xmrtoUuid); sb.append(",btcAddress:"); sb.append(btcAddress); sb.append(",btcAmount:"); sb.append(btcAmount); return sb.toString(); } }