导航菜单

页面标题

页面副标题

RummyCircle v11000.89 - TestActivity.java 源代码

正在查看: RummyCircle v11000.89 应用的 TestActivity.java JAVA 源代码文件

本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。


package com.games24x7.pgwebview.ui;

import android.os.Bundle;
import android.util.Log;
import androidx.appcompat.app.AppCompatActivity;
import com.games24x7.pgeventbus.PGEventBus;
import com.games24x7.pgeventbus.event.PGEvent;
import com.games24x7.pgeventbus.interfaces.PGModuleInterface;
import com.games24x7.pgwebview.R;
import com.games24x7.pgwebview.a;
import kotlin.Metadata;
import kotlin.jvm.internal.Intrinsics;
import org.jetbrains.annotations.NotNull;

@Metadata
public final class TestActivity extends AppCompatActivity implements PGModuleInterface {

    @NotNull
    private final String TAG = "TestActivity";

    @NotNull
    private final PGEventBus eventBus = new PGEventBus();

    @NotNull
    private final String webviewId = "1012";

    public PGEvent convert(@NotNull PGEvent pGEvent) {
        Intrinsics.checkNotNullParameter(pGEvent, "pgEvent");
        return pGEvent;
    }

    @NotNull
    public final PGEventBus getEventBus() {
        return this.eventBus;
    }

    @NotNull
    public String getType() {
        return "client";
    }

    @NotNull
    public final String getWebviewId() {
        return this.webviewId;
    }

    public void onCreate(Bundle bundle) {
        super/*androidx.fragment.app.FragmentActivity*/.onCreate(bundle);
        setContentView(R.layout.activity_test);
    }

    public void onStart() {
        super.onStart();
        this.eventBus.register(this);
    }

    public PGEvent processSyncRequest(@NotNull PGEvent pGEvent) {
        Intrinsics.checkNotNullParameter(pGEvent, "pgEvent");
        throw new kotlin.h("An operation is not implemented: Not yet implemented");
    }

    @org.greenrobot.eventbus.i
    public final void subscribeResponse(@NotNull PGEvent pGEvent) {
        Intrinsics.checkNotNullParameter(pGEvent, "event");
        Log.e(this.TAG, "subscribeResponse :: Event Received");
        String str = this.TAG;
        StringBuilder a = a.a("subscribeResponse :: Event EventInfo is :: ");
        a.append(pGEvent.getEventData());
        Log.e(str, a.toString());
        String str2 = this.TAG;
        StringBuilder a2 = a.a("subscribeResponse :: Event Payload is :: ");
        a2.append(pGEvent.getPayloadInfo());
        Log.e(str2, a2.toString());
    }
}