All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.solovyev.android.view.AbstractAlertDialogBuilder Maven / Gradle / Ivy

There is a newer version: 1.1.18
Show newest version
package org.solovyev.android.view;

import android.app.AlertDialog;
import android.content.Context;
import org.jetbrains.annotations.NotNull;

/**
 * User: serso
 * Date: 8/2/12
 * Time: 4:25 PM
 */
public abstract class AbstractAlertDialogBuilder implements DialogBuilder {

    @NotNull
    private Context context;

    protected AbstractAlertDialogBuilder(@NotNull Context context) {
        this.context = context;
    }

    @NotNull
    protected Context getContext() {
        return context;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy