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

com.openxc.sinks.ContextualVehicleDataSink Maven / Gradle / Ivy

There is a newer version: 5.2
Show newest version
package com.openxc.sinks;

import android.content.Context;

/**
 * A parent class for data sinks that require access to an Android context.
 */
public class ContextualVehicleDataSink extends BaseVehicleDataSink {
    private Context mContext;

    public ContextualVehicleDataSink(Context context) {
        mContext = context;
    }

    protected Context getContext() {
        return mContext;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy