fedilab-Android-App/app/src/main/java/app/fedilab/android/client/Entities/Reaction.java

92 lines
2.3 KiB
Java

package app.fedilab.android.client.Entities;
import android.os.Parcel;
import android.os.Parcelable;
/* Copyright 2020 Thomas Schneider
*
* This file is a part of Fedilab
*
* This program is free software; you can redistribute it and/or modify it under the terms of the
* GNU General Public License as published by the Free Software Foundation; either version 3 of the
* License, or (at your option) any later version.
*
* Fedilab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along with Fedilab; if not,
* see <http://www.gnu.org/licenses>. */
public class Reaction implements Parcelable {
public static final Creator<Reaction> CREATOR = new Creator<Reaction>() {
@Override
public Reaction createFromParcel(Parcel source) {
return new Reaction(source);
}
@Override
public Reaction[] newArray(int size) {
return new Reaction[size];
}
};
private String name;
private int count;
private boolean me;
private String url;
public Reaction() {
}
protected Reaction(Parcel in) {
this.name = in.readString();
this.count = in.readInt();
this.me = in.readByte() != 0;
this.url = in.readString();
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public boolean isMe() {
return me;
}
public void setMe(boolean me) {
this.me = me;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeString(this.name);
dest.writeInt(this.count);
dest.writeByte(this.me ? (byte) 1 : (byte) 0);
dest.writeString(this.url);
}
}