discord-jadx/app/src/main/java/com/discord/widgets/chat/input/expression/ExpressionDetailPage.java

71 lines
2.4 KiB
Java

package com.discord.widgets.chat.input.expression;
import c.d.b.a.a;
import com.discord.widgets.chat.input.gifpicker.GifCategoryItem;
import d0.z.d.m;
import kotlin.jvm.internal.DefaultConstructorMarker;
/* compiled from: ExpressionDetailPage.kt */
public abstract class ExpressionDetailPage {
/* compiled from: ExpressionDetailPage.kt */
public static final class GifCategoryPage extends ExpressionDetailPage {
private final GifCategoryItem gifCategoryItem;
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public GifCategoryPage(GifCategoryItem gifCategoryItem) {
super(null);
m.checkNotNullParameter(gifCategoryItem, "gifCategoryItem");
this.gifCategoryItem = gifCategoryItem;
}
public static /* synthetic */ GifCategoryPage copy$default(GifCategoryPage gifCategoryPage, GifCategoryItem gifCategoryItem, int i, Object obj) {
if ((i & 1) != 0) {
gifCategoryItem = gifCategoryPage.gifCategoryItem;
}
return gifCategoryPage.copy(gifCategoryItem);
}
public final GifCategoryItem component1() {
return this.gifCategoryItem;
}
public final GifCategoryPage copy(GifCategoryItem gifCategoryItem) {
m.checkNotNullParameter(gifCategoryItem, "gifCategoryItem");
return new GifCategoryPage(gifCategoryItem);
}
public boolean equals(Object obj) {
if (this != obj) {
return (obj instanceof GifCategoryPage) && m.areEqual(this.gifCategoryItem, ((GifCategoryPage) obj).gifCategoryItem);
}
return true;
}
public final GifCategoryItem getGifCategoryItem() {
return this.gifCategoryItem;
}
public int hashCode() {
GifCategoryItem gifCategoryItem = this.gifCategoryItem;
if (gifCategoryItem != null) {
return gifCategoryItem.hashCode();
}
return 0;
}
public String toString() {
StringBuilder P = a.P("GifCategoryPage(gifCategoryItem=");
P.append(this.gifCategoryItem);
P.append(")");
return P.toString();
}
}
private ExpressionDetailPage() {
}
public /* synthetic */ ExpressionDetailPage(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
}